Skip to content

Commit

Permalink
fix: Compile with tokio-comp and up-to-date dependencies
Browse files Browse the repository at this point in the history
Some other crate changed their feature flags in a breaking manner
which seems to have removed the `futures-util/alloc` feature we
implicitly relied on.

Fixes #531
Markus Westerlind committed Sep 2, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d2c86b0 commit 282f997
Showing 2 changed files with 143 additions and 182 deletions.
323 changes: 142 additions & 181 deletions Cargo.lock
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ async-native-tls = { version = "0.3", optional = true }
[features]
default = ["acl", "streams", "geospatial", "script"]
acl = []
aio = ["bytes", "pin-project-lite", "futures-util", "futures-util/sink", "tokio/io-util", "tokio-util", "tokio-util/codec", "tokio/sync", "combine/tokio"]
aio = ["bytes", "pin-project-lite", "futures-util", "futures-util/alloc", "futures-util/sink", "tokio/io-util", "tokio-util", "tokio-util/codec", "tokio/sync", "combine/tokio"]
geospatial = []
cluster = ["crc16", "rand"]
script = ["sha1"]

0 comments on commit 282f997

Please sign in to comment.