mirror of
https://github.com/robertwayne/axum-htmx
synced 2025-01-23 23:29:01 +01:00
Enable alloc feature for the futures crate
This commit is contained in:
parent
6756b25af2
commit
c70aedd24c
1 changed files with 4 additions and 2 deletions
|
@ -32,7 +32,9 @@ 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 }
|
||||
|
|
Loading…
Reference in a new issue