[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-config"
version = "0.3.0"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-format configuration layer for the Synaptic AI agent framework"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_config"
path = "src/lib.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "format"
path = "tests/format.rs"
[[test]]
name = "source"
path = "tests/source.rs"
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.synaptic-core]
version = "0.3"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]