tanzim 0.5.0

Configuration pipeline facade (load, parse, merge)
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 = "tanzim"
version = "0.5.0"
build = false
include = [
    "src/**/*.rs",
    "Cargo.toml",
    "README.md",
    "../../LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration pipeline facade (load, parse, merge)"
homepage = "https://crates.io/crates/tanzim"
documentation = "https://docs.rs/tanzim"
readme = "README.md"
keywords = [
    "configuration",
    "config",
    "cfg",
    "settings",
    "env",
]
categories = ["config"]
license = "BSD-3-Clause"
repository = "https://github.com/tanzim-rs/tanzim"
resolver = "2"

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

[features]
default = [
    "logging",
    "env",
]
env = [
    "tanzim-load/env",
    "tanzim-parse/env",
]
file = ["tanzim-load/file"]
full = [
    "env",
    "file",
    "http",
    "json",
    "yaml",
    "toml",
]
http = ["tanzim-load/http"]
json = ["tanzim-parse/json"]
logging = [
    "tanzim-load/logging",
    "tanzim-parse/logging",
    "tanzim-merge/logging",
    "dep:log",
]
toml = ["tanzim-parse/toml"]
tracing = [
    "tanzim-load/tracing",
    "tanzim-parse/tracing",
    "tanzim-merge/tracing",
    "dep:tracing",
]
yaml = ["tanzim-parse/yaml"]

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

[dependencies.cfg-if]
version = "1.0.0"

[dependencies.log]
version = "0.4.20"
optional = true

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

[dependencies.tanzim-load]
version = "0.5.0"

[dependencies.tanzim-merge]
version = "0.5.0"

[dependencies.tanzim-parse]
version = "0.5.0"

[dependencies.tanzim-source]
version = "0.2.0"

[dependencies.tanzim-value]
version = "0.2.0"

[dependencies.thiserror]
version = "1.0.56"

[dependencies.tracing]
version = "0.1.40"
optional = true

[dev-dependencies.dirs]
version = "5.0.1"

[dev-dependencies.env_logger]
version = "0.10.1"

[dev-dependencies.tracing-subscriber]
version = "0.3.18"
features = ["json"]