Make sure axum-extra also supports being compiled to WASM (#2237)

Co-authored-by: Jonas Platte <[email protected]>
This commit is contained in:
David Pedersen
2023-09-21 15:14:57 +02:00
committed by GitHub
co-authored by Jonas Platte
parent 3b3bbb2403
commit c8cf147657
+3
View File
@@ -8,6 +8,9 @@ publish = false
# `default-features = false` to not depend on tokio features which don't support wasm
# you can still pull in tokio manually and only add features that tokio supports for wasm
axum = { path = "../../axum", default-features = false }
# we don't strictly use axum-extra in this example but wanna make sure that
# works in wasm as well
axum-extra = { path = "../../axum-extra", default-features = false }
futures-executor = "0.3.21"
http = "0.2.7"
tower-service = "0.3.1"