-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (37 loc) · 922 Bytes
/
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
33
34
35
36
37
38
39
40
[package]
authors = ["SonuBardai <sonubardai9@gmail.com>"]
categories = ["command-line-utilities", "cryptography"]
name = "lock_box"
description = "A command-line tool for generating and managing passwords."
homepage = "https://github.com/SonuBardai/lockbox"
repository = "https://github.com/SonuBardai/lockbox"
license = "MIT"
keywords = [
"password",
"security",
"cli",
"password-manager",
"password-generator",
]
version = "0.1.3"
edition = "2021"
readme = "README.md"
[[bin]]
name = "lockbox"
path = "src/main.rs"
[dependencies]
aes-gcm = "0.10.2"
anyhow = "1.0.72"
clap = { version = "4.3.19", features = ["derive"] }
passwords = "3.1.13"
ring = "0.16.20"
rpassword = "7.2.0"
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
terminal_size = "0.2.6"
crossterm = "0.27.0"
copypasta = "0.8.2"
[dev-dependencies]
mockall = "0.11.4"
rstest = "0.18.1"
tempfile = "3.7.0"