[package]
edition = "2021"
rust-version = "1.70"
name = "qubit-config"
version = "0.8.5"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
"COVERAGE.md",
"COVERAGE.zh_CN.md",
".circleci/*",
"ci-check.sh",
".llvm-cov.toml",
".cargo-audit.toml.example",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Powerful type-safe configuration management with multi-value properties, variable substitution, and rich data type support"
homepage = "https://github.com/qubit-ltd/rs-config"
documentation = "https://docs.rs/qubit-config"
readme = "README.md"
keywords = [
"config",
"configuration",
"settings",
"properties",
"qubit",
]
categories = [
"config",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-config"
[lib]
name = "qubit_config"
path = "src/lib.rs"
doctest = false
[[test]]
name = "composite_config_source_tests"
path = "tests/source/composite_config_source_tests.rs"
[[test]]
name = "config_prefix_view_tests"
path = "tests/config_prefix_view_tests.rs"
[[test]]
name = "config_reader_tests"
path = "tests/config_reader_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "configurable_tests"
path = "tests/configurable_tests.rs"
[[test]]
name = "configured_tests"
path = "tests/configured_tests.rs"
[[test]]
name = "constants_tests"
path = "tests/constants_tests.rs"
[[test]]
name = "env_config_source_tests"
path = "tests/source/env_config_source_tests.rs"
[[test]]
name = "env_file_config_source_tests"
path = "tests/source/env_file_config_source_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "properties_config_source_tests"
path = "tests/source/properties_config_source_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "script_tests"
path = "tests/script_tests.rs"
[[test]]
name = "toml_config_source_tests"
path = "tests/source/toml_config_source_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[[test]]
name = "yaml_config_source_tests"
path = "tests/source/yaml_config_source_tests.rs"
[dependencies.bigdecimal]
version = "0.4"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dotenvy]
version = "0.15"
[dependencies.num-bigint]
version = "0.4"
features = ["serde"]
[dependencies.qubit-common]
version = "0.5"
[dependencies.qubit-value]
version = "0.3"
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "1.1"
features = ["parse"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dev-dependencies.tempfile]
version = "3"