Cargo Features
[dependencies]
opzioni = { version = "3.0.1", default-features = false, features = ["all", "json", "toml", "yaml", "tracing", "tokio"] }
- default = all
-
The
all
feature is set by default wheneveropzioni
is added without
somewhere in the dependency tree.default-features = false - all default = json, toml, yaml
- json all
-
Enables serde_json
- toml all
-
Enables toml
- yaml all
-
Enables serde_yaml
- tracing
-
Enables tracing
- tokio
-
Enables tokio
Affects
config::sync
,opzioni::Config
…