Skip to content

Commit

Permalink
Fix deadpool-memcached build
Browse files Browse the repository at this point in the history
  • Loading branch information
bikeshedder committed Sep 26, 2023
1 parent 3fa51eb commit 884629f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions memcached/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ deadpool = { path = "../", version = "0.10.0", default-features = false, feature
] }
futures = { version = "0.3", features = ["compat"] }
log = "0.4"
# This crate doesn't directly depend on tokio but async-memcached 0.1.7
# broke the build by forgetting to add the "net" feature to the tokio
# dependency. Once async-memcached is fixed this dependency can be removed
# again.
tokio = { version = "1.0", default-features = false, features = ["net"] }

0 comments on commit 884629f

Please sign in to comment.