[package]
edition = "2024"
rust-version = "1.87"
name = "devboy-storage"
version = "0.31.1"
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.async-trait]
version = "0.1"
[dependencies.bitflags]
version = "2.6"
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.devboy-core]
version = "0.31.1"
[dependencies.devboy-secret-patterns]
version = "0.31.1"
[dependencies.dirs]
version = "6.0"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.43"
features = [
"full",
"rt-multi-thread",
"macros",
"process",
"sync",
"io-util",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.temp-env]
version = "0.3"
features = ["async_closure"]
[dev-dependencies.tempfile]
version = "3.15"
[dev-dependencies.tokio]
version = "1.43"
features = [
"full",
"rt-multi-thread",
"macros",
"process",
"sync",
"io-util",
"time",
]
[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"