Cargo Features

[dependencies]
partial_config = { version = "0.6.1", default-features = false, features = ["serde", "eyre", "json", "toml", "derive", "tracing", "log"] }
default = derive, serde

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

serde default derive

Enables serde, serde of partial_config_derive

Affects partial_config::serde_support

eyre

Enables eyre

json

Enables std of serde_json

Affects partial_config::serde_support.Json

toml

With parse

Affects partial_config::serde_support.Toml

derive default

Enables partial_config_derive and derive of serde

serde:

Provide derive(Serialize, Deserialize) macros.

tracing

Enables tracing, tracing of partial_config_derive

log

Enables log, log of partial_config_derive

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.

serde_json json?