[package]
edition = "2021"
rust-version = "1.70"
name = "prism3-config"
version = "0.1.1"
authors = ["Hu Haixing <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/3-prism/prism3-rust-config"
documentation = "https://docs.rs/prism3-config"
readme = "README.md"
keywords = [
"config",
"configuration",
"settings",
"properties",
"prism3",
]
categories = [
"config",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/3-prism/prism3-rust-config"
[lib]
name = "prism3_config"
path = "src/lib.rs"
doctest = false
[[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 = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[dependencies.bigdecimal]
version = "0.4"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.num-bigint]
version = "0.4"
features = ["serde"]
[dependencies.prism3-core]
version = "0.1.1"
[dependencies.prism3-value]
version = "0.1.2"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"