siphon-secrets 0.1.1

Secret management with multiple backend support for Siphon
Documentation
[dependencies.base64]
optional = true
version = "0.22"

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

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

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

[features]
base64 = ["dep:base64"]
default = ["keychain", "onepassword", "env", "file", "base64"]
env = []
file = []
keychain = ["dep:keyring"]
onepassword = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Secret management with multiple backend support for Siphon"
edition = "2021"
license = "MIT"
name = "siphon-secrets"
readme = false
repository = "https://github.com/remikalbe/siphon"
version = "0.1.1"

[target.'cfg(target_os = "linux")'.dependencies.keyring]
features = ["linux-native"]
optional = true
version = "3"

[target.'cfg(target_os = "macos")'.dependencies.keyring]
features = ["apple-native"]
optional = true
version = "3"

[target.'cfg(target_os = "windows")'.dependencies.keyring]
features = ["windows-native"]
optional = true
version = "3"