Enable alloc feature for the futures crate

This commit is contained in:
Rob Wagner 2025-01-21 18:54:33 -05:00
parent 6756b25af2
commit c70aedd24c
No known key found for this signature in database
GPG key ID: 53CCB4497B15CF61

View file

@ -32,10 +32,12 @@ serde_json = { version = "1", optional = true }
# Optional dependencies required for the `auto-vary` feature.
tokio = { version = "1", features = ["sync"], optional = true }
futures = { version = "0.3", default-features = false, optional = true }
futures = { version = "0.3", default-features = false, features = [
"alloc",
], optional = true }
[dev-dependencies]
axum = { version = "0.8", default-features = false}
axum = { version = "0.8", default-features = false }
axum-test = "17"
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4"