-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 797 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 797 Bytes
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
[package]
name = "rustword_manager"
version = "0.1.0"
edition = "2021"
authors = ["Biscgit", "Henjujo"]
description = "Password manager built on SQLCipher and Ratatui"
readme = "README.md"
repository = "https://github.com/Biscgit/rustword_manager"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aead = "0.5.2"
aes-gcm = "0.10.3"
arboard = "3.3.0"
argon2 = "0.5.2"
base64 = "0.21.5"
chrono = "0.4.31"
crossterm = "0.27.0"
dirs = "5.0.1"
log = "0.4.20"
log4rs = "1.2.0"
passwords = "3.1.16"
rand = "0.8.5"
ratatui = "0.25.0"
rusqlite = { version = "0.30.0", features = ["bundled-sqlcipher"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
shielded = "0.1.2"
tui-textarea = "0.4.0"
typenum = "1.17.0"