[package]
edition = "2021"
name = "gloves"
version = "0.5.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "seamless secret manager and handoff"
homepage = "https://github.com/heyAyushh/gloves"
documentation = "https://docs.rs/gloves"
readme = "README.md"
keywords = [
"secrets",
"security",
"agent",
"rage",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT"
repository = "https://github.com/heyAyushh/gloves"
[features]
default = ["tui"]
tui = [
"dep:ratatui",
"dep:crossterm",
]
[lib]
name = "gloves"
path = "src/lib.rs"
[[bin]]
name = "gloves"
path = "src/main.rs"
[[bin]]
name = "gloves-docker-bridge"
path = "src/bin/gloves-docker-bridge.rs"
[[bin]]
name = "gloves-mcp"
path = "src/bin/gloves-mcp.rs"
[[test]]
name = "agent_backend"
path = "tests/agent_backend.rs"
[[test]]
name = "audit_log"
path = "tests/audit_log.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "config_parser"
path = "tests/config_parser.rs"
[[test]]
name = "docker_bridge"
path = "tests/docker_bridge.rs"
[[test]]
name = "fs_secure"
path = "tests/fs_secure.rs"
[[test]]
name = "gloves_mcp"
path = "tests/gloves_mcp.rs"
[[test]]
name = "human_backend_pending"
path = "tests/human_backend_pending.rs"
[[test]]
name = "key_derivation"
path = "tests/key_derivation.rs"
[[test]]
name = "metadata_registry"
path = "tests/metadata_registry.rs"
[[test]]
name = "namespaced_cli"
path = "tests/namespaced_cli.rs"
[[test]]
name = "openclaw_artifacts"
path = "tests/openclaw_artifacts.rs"
[[test]]
name = "runtime_paths"
path = "tests/runtime_paths.rs"
[[test]]
name = "secret_refs"
path = "tests/secret_refs.rs"
[[test]]
name = "secrets_manager"
path = "tests/secrets_manager.rs"
[[test]]
name = "setup_openclaw_script"
path = "tests/setup_openclaw_script.rs"
[[test]]
name = "ttl_reaper"
path = "tests/ttl_reaper.rs"
[[test]]
name = "types_validation"
path = "tests/types_validation.rs"
[[test]]
name = "vault_config_session"
path = "tests/vault_config_session.rs"
[[test]]
name = "vault_driver"
path = "tests/vault_driver.rs"
[[test]]
name = "vault_manager"
path = "tests/vault_manager.rs"
[[test]]
name = "vault_reaper"
path = "tests/vault_reaper.rs"
[dependencies.age]
version = "0.11.2"
[dependencies.atty]
version = "0.2"
[dependencies.chrono]
version = "0.4.43"
features = ["serde"]
[dependencies.clap]
version = "4.5.58"
features = ["derive"]
[dependencies.crossterm]
version = "0.29.0"
optional = true
[dependencies.ed25519-dalek]
version = "2"
[dependencies.gloves-config]
version = "0.5.11"
[dependencies.gloves-core]
version = "0.5.11"
[dependencies.hkdf]
version = "0.12.4"
[dependencies.hmac]
version = "0.12.1"
[dependencies.libc]
version = "0.2.177"
[dependencies.rand]
version = "0.10.0"
[dependencies.ratatui]
version = "0.29.0"
optional = true
[dependencies.regex]
version = "1.12.2"
[dependencies.rmcp]
version = "1.1.1"
features = [
"client",
"server",
"transport-io",
]
default-features = false
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.sha2]
version = "0.10.9"
[dependencies.shlex]
version = "1.3.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "1.0.1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.20.0"
features = [
"serde",
"v4",
]
[dependencies.zeroize]
version = "1.8.2"
features = ["derive"]
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.25.0"
[dev-dependencies.trybuild]
version = "1.0.116"