Cargo Features
[dependencies]
nostr-web = { version = "0.1.0", default-features = false, features = ["actix", "axum"] }
- default = axum
-
The
axum
feature is set by default whenevernostr-web
is added without
somewhere in the dependency tree.default-features = false - actix = actix-web, futures
- axum default = async-trait, axum-core
-
Enables axum ^0.6
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- actix-web actix?
- async-trait axum
- axum-core axum
-
Enables axum-core ^0.3
- futures actix?