-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (38 loc) · 861 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
[package]
name = "croc"
version = "0.1.0"
authors = ["Asaf Fisher <[email protected]>"]
edition = "2018"
[[bin]]
name = "croc"
path = "src/main.rs"
[dependencies]
aes = "0.8.3"
aes-gcm = "0.10.2"
anyhow = "1.0.75"
base64 = "0.21.4"
byteorder = "1.4.3"
chrono = "0.4.31"
clap = "4.4.0"
default-net = "0.17.0"
hex = "0.4.3"
inquire = "0.6.2"
log = "0.4.20"
num-bigint-dig = "0.8.4"
num-traits = "0.2"
once_cell = "1.18.0"
pbkdf2 = "0.12.2"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
rust-pake = "0.1.1"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = {version = "1.0.105", features = ["arbitrary_precision"]}
serde_repr = "0.1.16"
serde_with = "3.3.0"
sha2 = "0.10.7"
tempfile = "3.9.0"
thiserror = "1.0.48"
tokio = {version = "1.35.0", features = ["net", "io-util", "full"]}
[dev-dependencies]
serial_test = "3.0.0"
tempfile = "3.9.0"