[package]
edition = "2021"
rust-version = "1.88"
name = "tsafe-agent"
version = "1.0.5"
authors = ["Ryan Tilcock <ryan.tilcock@msamlin.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Background session agent for tsafe — holds vault unlock state over named pipe/socket for passwordless access"
homepage = "https://github.com/0ryant/tsafe"
documentation = "https://docs.rs/tsafe-agent"
readme = "README.md"
keywords = [
"secrets",
"vault",
"agent",
"session",
"credentials",
]
categories = [
"command-line-utilities",
"authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/tsafe"
[lib]
name = "tsafe_agent"
path = "src/lib.rs"
[[bin]]
name = "tsafe-agent"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rand]
version = "0.8"
features = ["std"]
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tsafe-core]
version = "1.0.9"
[dependencies.zeroize]
version = "1"
features = ["derive"]
[target.'cfg(not(target_os = "windows"))'.dependencies.libc]
version = "0.2"
[target.'cfg(not(target_os = "windows"))'.dependencies.signal-hook]
version = "0.3"