Cargo Features
[dependencies]
denvars = { version = "0.3.2", default-features = false, features = ["std", "json", "toml"] }
- default = std
-
The
std
feature is set by default wheneverdenvars
is added without
somewhere in the dependency tree.default-features = false - std default json? toml?
-
Enables std of base64 ^0.21, serde, and optional serde_json
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library. - json = std
-
Enables serde_json
Affects
denvars::json
… - toml = std
-
Enables toml
Affects
denvars::toml
…