-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (55 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "peridio-cli"
description = "Peridio CLI"
homepage = "https://peridio.com"
repository = "https://github.com/peridio/peridio-cli"
version = "0.26.1"
edition = "2021"
[dependencies]
peridio-sdk = { git = "https://github.com/peridio/peridio-rust.git", tag = "0.2.1" }
serde_json = "1.0.125"
snafu = "0.8.4"
tokio = { version = "1.39.3", features = ["full"] }
tower = { version = "0.5.0" }
directories = "5.0.1"
reqwest = { version = "0.12.7", default-features = false, features = [
"json",
"rustls-tls",
"stream",
] }
serde = "1.0.208"
indicatif = "0.17.8"
futures-util = "0.3.30"
flate2 = "1.0.32"
tar = "0.4.41"
uuid = { version = "1.10.0", features = [
"v4",
"v7",
"fast-rng",
"macro-diagnostics",
] }
base64 = "0.22.1"
clap = { version = "4.5.16", features = ["derive", "env"] }
termcolor = "1.4.1"
ed25519-dalek = { version = "2.1.1", features = ["pem"] }
sha2 = "0.10.8"
backon = {version = "0.5.0", features = ["tokio-sleep"]}
console = "0.15.8"
clap-num = "1.1.1"
rcgen = { version = "0.13.1", features = ["aws_lc_rs", "pem", "x509-parser"] }
time = { version = "0.3.36", features = ["formatting", "parsing", "macros"] }
x509-parser = "0.16.0"
aws-lc-rs = "1.10.0"
[dev-dependencies]
# assert on peridio-cli for integration tests
assert_cmd = "2.0.16"
# indent mix stdout and stderr on failure in tests
indent = "0.1.1"
# starting once and cleaning up `mix -S phx.server` for integration tests
static_init = "1.0.3"
# predicates for matching peridio-cli output
predicates = "3.1.2"
# parsing JSON output during integration testing
serde_json = "1.0.125"
# temporary file for integration tests
tempfile = "3.12.0"