[package] name = "steelsafe" version = "0.1.0" edition = "2021" authors = ["H2CO3 "] license = "MIT" description = "Simple, personal TUI password manager" documentation = "https://docs.rs/steelsafe" categories = ["authentication", "command-line-utilities", "cryptography"] keywords = ["password", "password-manager", "security", "cryptography", "crypto"] repository = "https://github.com/H2CO3/steelsafe/" homepage = "https://h2co3.github.io/steelsafe/" [dependencies] thiserror = "1.0.63" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" chrono = { version = "0.4.38", features = ["serde"] } directories = "5.0.1" rand = "0.8.5" zeroize = "1.8.1" block-padding = { version = "0.3.3", features = ["std"] } crypto-common = { version = "0.1.6", features = ["std"] } argon2 = { version = "0.5.3", features = ["zeroize", "std"] } chacha20poly1305 = { version = "0.10.1", features = ["std"] } nanosql = { version = "0.9.1", features = ["chrono"] } ratatui = { version = "0.28.1", features = ["serde"] } tui-textarea = "0.6.1" arboard = "3.4.1" [dev-dependencies] zxcvbn = "3.1.0"