-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 loc) · 921 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
41
42
43
[package]
authors = ["Leonid Beder <[email protected]>"]
edition = "2021"
name = "slowkey"
version = "2.6.0"
[dependencies]
balloon-hash = "0.4.0"
base64 = "0.21.7"
better-panic = "0.3.0"
bs58 = "0.5.1"
byteorder = "1.5.0"
chacha20poly1305 = "0.10.1"
chrono = "0.4.38"
clap = { version = "4.5.22", features = ["derive", "string"] }
color-backtrace = "0.6.1"
criterion = "0.5.1"
crossterm = "0.27.0"
dialoguer = "0.11.0"
fs2 = "0.4.3"
glob = "0.3.1"
hex = "0.4.3"
humantime = "2.1.0"
indicatif = "0.17.9"
libsodium-sys-stable = { version = "1.22.1", features = ["optimized"] }
mimalloc = { version = "0.1.43", default-features = false }
rayon = "1.10.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
sha2 = "0.10.8"
sha3 = "0.10.8"
[dev-dependencies]
rstest = "0.18.2"
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
[profile.profile]
debug = true
inherits = "release"