-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (46 loc) · 1.11 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
[package]
name = "testsuit"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
toml = { workspace = true }
log = "0.4.18"
futures = "0.3.29"
base64 = "0.21.5"
tower = "0.4.13"
prost = { workspace = true }
prost-types = { workspace = true }
tonic-web = { workspace = true }
futures-core = "0.3.29"
http-body = "0.4.6"
thiserror = "1.0.56"
clap = { version = "4.4.18", features = ["derive"] }
indicatif-log-bridge = "0.2.2"
indicatif = "0.17.7"
pretty_env_logger = "0.5.0"
[dependencies.chrono]
workspace = true
features = ["serde"]
[dependencies.serde]
workspace = true
features = ["derive"]
[dependencies.uuid]
version = "1.7.0"
features = [
"v4",
"fast-rng",
"macro-diagnostics",
]
[dependencies.async-std]
version = "1.7.0"
features = ["attributes","tokio1"]
[dependencies.tonic]
workspace = true
features = ["transport", "channel", "codegen", "tls", "prost"]
[dependencies.hyper]
version = "0.14.27"
features = ["client", "http1", "http2"]
[build-dependencies.tonic-build]
workspace = true
features = ["default"]