[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-secrets"
version = "0.4.0"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Secret management and output masking 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_secrets"
path = "src/lib.rs"
[[test]]
name = "secrets"
path = "tests/secrets.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.4"
[dependencies.synaptic-middleware]
version = "0.4"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]