-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "steelsafe"
version = "0.1.0"
edition = "2021"
authors = ["H2CO3 <[email protected]>"]
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"