-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 831 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
[package]
name = "pm"
version = "0.11.1"
edition = "2021"
[dependencies]
aes-gcm = "0.10.3"
anstyle = "1.0.6"
argon2 = "0.5.3"
chrono = "0.4.34"
clap = { version = "4.5.1", features = ["derive"] }
clipboard = "0.5.0"
dialoguer = { version = "0.11.0", default-features = false, features = ["password"] }
dirs = "5.0.1"
email_address = { version = "0.2.4", default-features = false }
git2 = "0.18.2"
hashbrown = { version = "0.14.3", features = ["rkyv"] }
owo-colors = "4.0.0"
rand = "0.8.5"
rkyv = { version = "0.7.44", features = ["validation"] }
snafu = "0.8.0"
tar = { version = "0.4.40", default-features = false }
url = "2.5.0"
whoami = { version = "1.4.1", default-features = false }
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
strip = true
[lints.clippy]
pedantic = "warn"
nursery = "warn"
all = "warn"