Cargo Features
[dependencies]
gray_matter = { version = "0.2.8", default-features = false, features = ["toml", "yaml"] }
- default = toml, yaml
-
These default features are set whenever
gray_matter
is added without
somewhere in the dependency tree.default-features = false
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.
- toml default
-
Enables toml ^0.5.9
Affects
engine::toml
… - yaml default
-
Enables yaml-rust2 ^0.8.0
Affects
engine::yaml
…