-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.22 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
[package]
name = "rustpass"
version = "0.1.0"
edition = "2021"
[dependencies]
ratatui = "0.29.0" # Fork of `tui-rs`
crossterm = "0.27" # Terminal event handling
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" # Required for JSON serialization/deserialization
serde_with = { version = "2.3.2", features = ["base64"] } # Helper for serializing complex types
env_logger = "0.11.6"
log = "0.4.25"
chrono = "0.4.39"
arboard = "3.3"
pam = "0.8.0" # PAM authentication
systemd = "0.10.0" # Systemd integration for session management
zbus = "3.14.1" # D-Bus communication for systemd-logind
tokio = { version = "1.36.0", features = ["full"] } # Async runtime for session monitoring
argon2 = "0.5.3"
aes-gcm = "0.10.3"
rand = "0.9.0"
base64 = "0.22.1"
clap = "4.5.32"
dialoguer = "0.11.0"
lazy_static = "1.4.0"
rpassword = "7.3.1"
uuid = { version = "1.6.1", features = ["v4"] }
interprocess = "1.2"
dirs = "5.0"
daemonize = "0.5" # Optional, for proper daemonization
sha2 = "0.10.8"
[[bin]]
name = "rsp"
path = "src/main.rs"