[package]
edition = "2021"
rust-version = "1.88"
name = "tsafe-tui"
version = "1.0.10"
authors = ["Ryan Tilcock <ryan.tilcock@msamlin.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal UI for tsafe secret vault — full-screen browser with keyboard navigation, history viewer, quick-unlock"
homepage = "https://github.com/0ryant/tsafe"
documentation = "https://docs.rs/tsafe-tui"
readme = "README.md"
keywords = [
"secrets",
"vault",
"tui",
"terminal",
"credentials",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/tsafe"
[lib]
name = "tsafe_tui"
path = "src/lib.rs"
[[bin]]
name = "tsafe-ui"
path = "src/main.rs"
[[test]]
name = "clipboard_yank"
path = "tests/clipboard_yank.rs"
[[test]]
name = "confirmdelete_undo"
path = "tests/confirmdelete_undo.rs"
[[test]]
name = "render_login"
path = "tests/render_login.rs"
[[test]]
name = "reveal_autoconceal"
path = "tests/reveal_autoconceal.rs"
[[test]]
name = "run_loop_smoke"
path = "tests/run_loop_smoke.rs"
[[test]]
name = "state_dispatch"
path = "tests/state_dispatch.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arboard]
version = "3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.nucleo]
version = "0.5"
[dependencies.ratatui]
version = "0.29"
[dependencies.rpassword]
version = "7"
[dependencies.serde_json]
version = "1"
[dependencies.tsafe-core]
version = "1.0.10"
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies.insta]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.temp-env]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = ["Win32_System_Console"]