-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (50 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
60 lines (50 loc) · 1.24 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "vault"
version = "0.3.0"
edition = "2024"
authors = ["Kimlong"]
description = "A local-first encrypted credential manager with vim-style TUI"
license = "GPL-3.0-only"
repository = "https://github.com/iamKimlong/vault"
keywords = ["password", "credential", "manager", "tui", "encryption"]
categories = ["command-line-utilities", "cryptography"]
[dependencies]
# TUI
ratatui = "0.29"
crossterm = "0.28"
# Database
rusqlite = { version = "0.32", features = ["bundled", "backup"] }
# Crypto
argon2 = "0.5"
chacha20poly1305 = "0.10"
hkdf = "0.12"
sha2 = "0.10"
hmac = "0.12"
sha1 = "0.10"
rand = "0.8"
libc = "0.2"
secrecy = "0.10"
zeroize = { version = "1.8", features = ["derive"] }
# TOTP
totp-rs = { version = "5.6", features = ["otpauth"] }
# Clipboard
arboard = "3.4"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.10", features = ["v4"] }
hex = "0.4"
base64 = "0.22"
dirs = "5.0"
thiserror = "1.0"
anyhow = "1.0"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_Memory"] }
[dev-dependencies]
tempfile = "3.12"
[profile.release]
opt-level = 3
lto = true
strip = true