Cargo Features
[dependencies]
musicbrainz_rs_nova = { version = "0.8.0", default-features = false, features = ["async", "rustls", "blocking", "rate_limit", "legacy_serialize"] }
- default = async, rate_limit
-
These default features are set whenever
musicbrainz_rs_nova
is added without
somewhere in the dependency tree.default-features = false Enables default-tls of reqwest
reqwest:
Note: this doesn't enable the 'native-tls' feature, which adds specific functionality for it.
- async default rate_limit = wasm-timer
- rustls
-
Enables rustls-tls of reqwest
- blocking
- rate_limit default = async, tokio
- legacy_serialize
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.
- wasm-timer async
- tokio rate_limit
-
Enables tokio
Using tokio for sleep_until. The std implementation is unstable, so tokio is there as a remplacement