[package]
edition = "2021"
rust-version = "1.75"
name = "secretsh"
version = "0.1.5"
authors = ["Hoang Le <lthoangg@users.noreply.github.com>"]
build = false
exclude = [
".github/",
"docs/",
"fuzz/",
"target/",
"python/",
"tests/",
".venv/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Secure subprocess secret injection for AI agents"
homepage = "https://github.com/lthoangg/secretsh"
documentation = "https://docs.rs/secretsh"
readme = "README.md"
keywords = [
"security",
"secrets",
"vault",
"subprocess",
"redaction",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT"
repository = "https://github.com/lthoangg/secretsh"
[features]
default = []
python = ["pyo3/extension-module"]
[lib]
name = "secretsh"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "secretsh"
path = "src/main.rs"
[dependencies.aho-corasick]
version = "1"
[dependencies.argon2]
version = "0.5"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.percent-encoding]
version = "2"
[dependencies.pyo3]
version = "0.25"
optional = true
[dependencies.ring]
version = "0.17"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
strip = true