itools-config 0.0.1

Configuration management for iTools
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 = "itools-config"
version = "0.0.1"
authors = ["Aster <192607617@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration management for iTools"
homepage = "https://github.com/oovm/iTools"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/oovm/iTools/tree/dev/compilers/itools-config"
resolver = "2"

[features]
default = [
    "json",
    "toml",
    "yaml",
]
json = ["oak-json"]
toml = ["oak-toml"]
yaml = ["oak-yaml"]

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

[[test]]
name = "config_test"
path = "tests/config_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[bench]]
name = "merge_benchmark"
path = "benches/merge_benchmark.rs"
harness = false

[dependencies.itools-localization]
version = "0.0.1"

[dependencies.itools-macros]
version = "0.0.1"

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.oak-json]
version = "0.0.9"
optional = true

[dependencies.oak-toml]
version = "0.0.9"
optional = true

[dependencies.oak-yaml]
version = "0.0.9"
optional = true

[dependencies.serde]
version = "1.0.228"
features = [
    "derive",
    "rc",
    "derive",
]

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]

[dev-dependencies.assert_matches]
version = "1.5"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.figment]
version = "0.10"
features = [
    "json",
    "toml",
    "yaml",
]

[dev-dependencies.tempfile]
version = "3.27"