# 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" rust-version = "1.61.0" name = "confique" version = "0.3.0" authors = ["Lukas Kalbertodt "] build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = "Type-safe, layered, light-weight, `serde`-based configuration library" documentation = "https://docs.rs/confique/" readme = "README.md" keywords = [ "config", "configuration", "conf", "serde", "type-safe", ] categories = ["config"] license = "MIT/Apache-2.0" repository = "https://github.com/LukasKalbertodt/confique/" [package.metadata.docs.rs] all-features = true [lib] name = "confique" path = "src/lib.rs" [[example]] name = "parse_env" path = "examples/parse_env.rs" [[example]] name = "simple" path = "examples/simple.rs" required-features = ["toml"] [[example]] name = "validate" path = "examples/validate.rs" required-features = ["toml"] [[test]] name = "array_default" path = "tests/array_default.rs" [[test]] name = "check_symbols" path = "tests/check_symbols.rs" [[test]] name = "env" path = "tests/env.rs" [[test]] name = "general" path = "tests/general.rs" [[test]] name = "map_default" path = "tests/map_default.rs" [[test]] name = "validation" path = "tests/validation.rs" required-features = ["toml"] [dependencies.confique-macro] version = "=0.0.11" [dependencies.json5] version = "0.4.1" optional = true [dependencies.serde] version = "1" features = ["derive"] [dependencies.serde_yaml] version = "0.9" optional = true [dependencies.toml] version = "0.8" optional = true [dev-dependencies.pretty_assertions] version = "1.2.1" [features] default = [] yaml = ["serde_yaml"]