provcfg 0.1.0

Configuration library that keeps track of the origin and history of all config values.
Documentation
# 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 = "2024"
name = "provcfg"
version = "0.1.0"
authors = ["Stefan Hausotte"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration library that keeps track of the origin and history of all config values."
documentation = "https://docs.rs/provcfg"
readme = "README.md"
keywords = [
    "config",
    "provenance",
    "settings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/secana/provcfg"

[package.metadata.docs.rs]
all-features = true

[features]
clap-derive = ["dep:provcfg-clap"]
cli = ["dep:serde_json"]
default = ["env"]
env = ["dep:serde_json"]
json = ["dep:serde_json"]
toml = ["dep:toml"]

[lib]
name = "provcfg"
path = "src/lib.rs"

[[test]]
name = "ui"
path = "tests/ui.rs"

[dependencies.erased-serde]
version = "0.4"

[dependencies.provcfg-clap]
version = "0.1.0"
optional = true

[dependencies.provcfg-macros]
version = "0.1.0"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.9"
optional = true

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.trybuild]
version = "1"