-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.06 KB
/
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 = ["Bernd Kaiser <bk@dfjk.eu>"]
edition = "2021"
name = "psonoci"
version = "0.5.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
bs58 = "0.5.0"
chrono = { version = "0.4.26", features = ["serde"] }
clap = "2"
const_format = "0.2"
hex = "0.4.3"
lazy_static = "1.4.0"
rand = "0.8"
rayon = "1.7"
rmp = "0.8"
rmp-serde = "1.1"
reqwest = { version = "0.12", features = [
"blocking",
"native-tls-vendored",
"rustls-tls",
"json",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3.26"
toml = "0.8"
totp-rs = { version = "5.1.0", features = ["otpauth"] }
unicode-segmentation = "1.10"
url = { version = "2.4", features = ["serde"] }
uuid = { version = "1.4", features = ["serde", "v4"] }
xsalsa20poly1305 = "0.9.1"
russh-keys = { git = "https://github.com/Eugeny/russh.git", rev = "348e522e7462cb0ba8458db948fbbb6097a77109" }
tokio = "1.40.0"
futures = "0.3.31"
pgp = "0.14.0"
[dev-dependencies]
mockall = "0.13.0"
tempfile = "3.13"