Cargo Features
[dependencies]
irx-config = { version = "3.5.0", default-features = false, features = ["blake2b", "blake3", "parsers", "env", "json", "json5-parser", "yaml", "toml-parser", "cmd"] }
- default = blake2b
-
The
blake2b
feature is set by default wheneverirx-config
is added without
somewhere in the dependency tree.default-features = false - blake2b default
-
Enables blake2b_simd
- blake3
-
Enables blake3
- parsers cmd? env? json? json5-parser? toml-parser? yaml?
-
Enables derive_builder
Affects
irx-config::parsers
… - env = parsers
-
Enables serde_yaml
Affects
parsers::env
… - json = parsers
-
Affects
parsers::json
… - json5-parser = parsers
-
Enables json5
Affects
parsers::json5
… - yaml = parsers
-
Enables serde_yaml
Affects
parsers::yaml
… - toml-parser = parsers
-
Enables toml
Affects
parsers::toml
… - cmd = parsers
-
Enables clap and serde_yaml
Affects
parsers::cmd
…