-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathCargo.toml
35 lines (31 loc) · 916 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
[package]
name = "test-rpc"
description = "Supports IPC between test-runner and test-manager"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
futures = { workspace = true }
tokio = { workspace = true }
tokio-serde = { workspace = true }
tarpc = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
once_cell = { workspace = true }
bytes = { workspace = true }
err-derive = { workspace = true }
log = { workspace = true }
colored = { workspace = true }
async-trait = { workspace = true }
hyper = { version = "0.14.23", features = ["client", "http2"] }
hyper-rustls = { version = "0.24", features = ["log", "webpki-roots"] }
tokio-rustls = "0.24"
rustls-pemfile = "0.2"
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
default-features = false