# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "partial_config" version = "0.7.1" authors = ["Aleksandr Petrosyan"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Rust crate to implement layered partial configuration" readme = "README.md" license = "Apache-2.0" [lib] name = "partial_config" path = "src/lib.rs" [[bin]] name = "partial_config" path = "src/main.rs" [[test]] name = "config" path = "tests/config.rs" [[test]] name = "ui" path = "tests/ui.rs" [dependencies.eyre] version = "0.6.12" optional = true [dependencies.log] version = "0.4.21" optional = true [dependencies.partial_config_derive] version = "0.5.1" optional = true [dependencies.proc-macro2] version = "1.0.79" [dependencies.serde] version = "1.0.197" optional = true default-features = false [dependencies.serde_json] version = "1.0.114" optional = true default-features = false [dependencies.toml] version = "0.8.12" optional = true default-features = false [dependencies.tracing] version = "0.1.40" optional = true [dev-dependencies.trybuild] version = "1.0" [features] default = [ "derive", "serde", ] derive = [ "dep:partial_config_derive", "serde/derive", ] eyre = ["dep:eyre"] json = [ "dep:serde_json", "serde_json/std", ] log = [ "dep:log", "partial_config_derive/log", ] serde = [ "dep:serde", "partial_config_derive/serde", ] toml = [ "dep:toml", "toml/parse", ] tracing = [ "dep:tracing", "partial_config_derive/tracing", ]