[dependencies.clap]
features = ["derive", "env"]
version = "4.5"
[dependencies.gonfig_derive]
version = "0.1.1"
[dependencies.once_cell]
version = "1.19"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[[example]]
name = "complex"
path = "examples/complex.rs"
[[example]]
name = "comprehensive_skip"
path = "examples/comprehensive_skip.rs"
[[example]]
name = "madara"
path = "examples/madara.rs"
[[example]]
name = "madara_usecase"
path = "examples/madara_usecase.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "skip_attributes"
path = "examples/skip_attributes.rs"
[[example]]
name = "your_usecase"
path = "examples/your_usecase.rs"
[lib]
name = "gonfig"
path = "src/lib.rs"
[package]
authors = ["Vasanthkumar Kalaiselvan<itsparser@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["config", "command-line-interface"]
description = "A unified configuration management library for Rust that seamlessly integrates environment variables, config files, and CLI arguments"
documentation = "https://docs.rs/gonfig"
edition = "2021"
homepage = "https://github.com/itsparser/gonfig"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE*", "examples/**/*"]
keywords = ["config", "configuration", "cli", "environment", "settings"]
license = "MIT OR Apache-2.0"
name = "gonfig"
readme = "README.md"
repository = "https://github.com/itsparser/gonfig"
version = "0.1.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]