rskit-config 0.2.0-alpha.3

Adapter-oriented configuration loading with validation
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"
rust-version = "1.91"
name = "rskit-config"
version = "0.2.0-alpha.3"
authors = ["kbukum contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adapter-oriented configuration loading with validation"
homepage = "https://github.com/kbukum/rskit"
documentation = "https://docs.rs/rskit-config"
readme = "README.md"
keywords = [
    "config",
    "toml",
    "env",
    "settings",
]
categories = ["config"]
license = "MIT"
repository = "https://github.com/kbukum/rskit"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["validate"]
validate = [
    "dep:validator",
    "dep:rskit-validation",
    "dep:rskit-logging",
]
watch = [
    "dep:rskit-stream",
    "dep:tokio-util",
]

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

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

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

[dependencies.config]
version = "0.15"
features = ["toml"]
default-features = false

[dependencies.dotenvy]
version = "0.15"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rskit-codec]
version = "0.2.0-alpha.1"

[dependencies.rskit-errors]
version = "0.2.0-alpha.1"

[dependencies.rskit-fs]
version = "0.2.0-alpha.1"
default-features = false

[dependencies.rskit-logging]
version = "0.2.0-alpha.1"
optional = true
default-features = false

[dependencies.rskit-stream]
version = "0.2.0-alpha.1"
optional = true

[dependencies.rskit-util]
version = "0.2.0-alpha.1"

[dependencies.rskit-validation]
version = "0.2.0-alpha.1"
optional = true

[dependencies.rskit-version]
version = "0.2.0-alpha.1"

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

[dependencies.serde_json]
version = "1"

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.validator]
version = "0.20"
optional = true

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.rskit-validation]
version = "0.2.0-alpha.1"

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

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.validator]
version = "0.20"