Skip to content

Commit

Permalink
Fix optional tokio dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bikeshedder committed Sep 9, 2024
1 parent 8afdf60 commit 166c44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ redis = { version = "0.26", default-features = false, features = ["aio"] }
serde = { package = "serde", version = "1.0", features = [
"derive",
], optional = true }
tokio = { version = "1.0", features = ["sync"] }
tokio = { version = "1.0", default-features = false, optional = true }

[dev-dependencies]
config = { version = "0.14", features = ["json"] }
Expand Down

0 comments on commit 166c44d

Please sign in to comment.