mirror of
https://github.com/robertwayne/axum-htmx
synced 2025-01-23 15:19:02 +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,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"
|
||||
|
|
Loading…
Reference in a new issue