Cargo Features

[dependencies]
musicbrainz_rs_nova = { version = "0.7.0", default-features = false, features = ["async", "rustls", "blocking", "rate_limit"] }
default = async, rate_limit

These default features are set whenever musicbrainz_rs_nova is added without default-features = false somewhere in the dependency tree.

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

Enables blocking of reqwest

rate_limit default = async, tokio

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