| # 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 = "2018" |
| rust-version = "1.56.0" |
| name = "config" |
| version = "0.13.4" |
| authors = ["Ryan Leckey <[email protected]>"] |
| description = "Layered configuration system for Rust applications." |
| homepage = "https://github.com/mehcode/config-rs" |
| readme = "README.md" |
| keywords = [ |
| "config", |
| "configuration", |
| "settings", |
| "env", |
| "environment", |
| ] |
| categories = ["config"] |
| license = "MIT/Apache-2.0" |
| repository = "https://github.com/mehcode/config-rs" |
| |
| [dependencies.async-trait] |
| version = "0.1.2" |
| |
| [dependencies.indexmap] |
| version = "1.7.0" |
| features = ["serde-1"] |
| optional = true |
| |
| [dependencies.json5_rs] |
| version = "0.4" |
| optional = true |
| package = "json5" |
| |
| [dependencies.lazy_static] |
| version = "1.4" |
| |
| [dependencies.nom] |
| version = "7" |
| |
| [dependencies.pathdiff] |
| version = "0.2" |
| |
| [dependencies.ron] |
| version = "0.7" |
| optional = true |
| |
| [dependencies.rust-ini] |
| version = "0.18" |
| optional = true |
| |
| [dependencies.serde] |
| version = "1.0.99" |
| |
| [dependencies.serde_json] |
| version = "1.0.0" |
| optional = true |
| |
| [dependencies.toml] |
| version = "0.5" |
| optional = true |
| |
| [dependencies.yaml-rust] |
| version = "0.4" |
| optional = true |
| |
| [dev-dependencies.chrono] |
| version = "0.4.23" |
| features = ["serde"] |
| |
| [dev-dependencies.float-cmp] |
| version = "0.9" |
| |
| [dev-dependencies.futures] |
| version = "0.3" |
| |
| [dev-dependencies.glob] |
| version = "0.3" |
| |
| [dev-dependencies.notify] |
| version = "4.0.0" |
| |
| [dev-dependencies.reqwest] |
| version = "0.11" |
| |
| [dev-dependencies.serde_derive] |
| version = "1.0.99" |
| |
| [dev-dependencies.temp-env] |
| version = "0.2.0" |
| |
| [dev-dependencies.tokio] |
| version = "1.13" |
| features = [ |
| "rt-multi-thread", |
| "macros", |
| ] |
| |
| [dev-dependencies.warp] |
| version = "=0.3.5" |
| |
| [features] |
| default = [ |
| "toml", |
| "json", |
| "yaml", |
| "ini", |
| "ron", |
| "json5", |
| ] |
| ini = ["rust-ini"] |
| json = ["serde_json"] |
| json5 = ["json5_rs"] |
| preserve_order = [ |
| "indexmap", |
| "toml/preserve_order", |
| "serde_json/preserve_order", |
| "ron/indexmap", |
| ] |
| yaml = ["yaml-rust"] |
| |
| [badges.maintenance] |
| status = "actively-developed" |