Cargo Features

[dependencies]
partial_config = { version = "0.7.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

Enables parse of toml

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