[package]
name = "tsafe"
version = "1.1.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
publish.workspace = true
repository.workspace = true
homepage = "https://github.com/0ryant/tsafe"
documentation = "https://docs.rs/tsafe"
rust-version.workspace = true
description = "Meta-crate for the tsafe local-first secrets runtime: CLI, agent, MCP server, native host, and tray"
readme = "README.md"
keywords = ["secrets", "vault", "cli", "mcp", "devops"]
categories = ["command-line-utilities", "cryptography"]
[dependencies]
tsafe-cli = { path = "../tsafe-cli", version = "1.1.0", features = ["mcp"] }
tsafe-agent = { path = "../tsafe-agent", version = "1.1.0" }
tsafe-mcp = { path = "../tsafe-mcp", version = "1.1.0" }
tsafe-nativehost = { path = "../tsafe-nativehost", version = "1.1.0" }
tsafe-tray = { path = "../tsafe-tray", version = "1.1.0" }
[lib]
path = "src/lib.rs"
[[bin]]
name = "tsafe"
path = "src/bin/tsafe.rs"
doc = false
[[bin]]
name = "tsafe-agent"
path = "src/bin/tsafe_agent.rs"
doc = false
[[bin]]
name = "tsafe-mcp"
path = "src/bin/tsafe_mcp.rs"
doc = false
[[bin]]
name = "tsafe-nativehost"
path = "src/bin/tsafe_nativehost.rs"
doc = false
[[bin]]
name = "tsafe-tray"
path = "src/bin/tsafe_tray.rs"
doc = false