Skip to content

Commit

Permalink
chore(dependencies): enable futures-util/alloc for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Mar 12, 2024
1 parent 2a093c0 commit 4d0c184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -43,7 +43,7 @@ want = { version = "0.3", optional = true }
[dev-dependencies]
form_urlencoded = "1"
futures-channel = { version = "0.3", features = ["sink"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
futures-util = { version = "0.3", default-features = false, features = ["alloc", "sink"] }
http-body-util = "0.1"
pretty_env_logger = "0.5"
spmc = "0.3"
Expand Down Expand Up @@ -85,7 +85,7 @@ client = ["dep:want", "dep:pin-project-lite", "dep:smallvec"]
server = ["dep:httpdate", "dep:pin-project-lite", "dep:smallvec"]

# C-API support (currently unstable (no semver))
ffi = ["dep:libc", "dep:http-body-util"]
ffi = ["dep:libc", "dep:http-body-util", "futures-util?/alloc"]

# Utilize tracing (currently unstable)
tracing = ["dep:tracing"]
Expand Down

0 comments on commit 4d0c184

Please sign in to comment.