[package]
edition = "2024"
rust-version = "1.87"
name = "devboy-storage"
version = "0.27.0"
authors = ["Meteora <dev@meteora.pro>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Secure credential storage for devboy-tools — OS keychain (macOS/Windows/Linux) with redacted SecretString plumbing."
homepage = "https://devboy.pro"
readme = "README.md"
keywords = [
"devboy",
"keychain",
"credentials",
"secrets",
"storage",
]
categories = [
"authentication",
"os",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/meteora-pro/devboy-tools"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "devboy_storage"
path = "src/lib.rs"
[dependencies.devboy-core]
version = "0.27.0"
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.43"
features = [
"full",
"rt-multi-thread",
"macros",
]
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3"
features = [
"sync-secret-service",
"crypto-rust",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3"
features = ["windows-native"]
[lints.rust]
unsafe_code = "forbid"