xref: /tonic/interop/Cargo.toml (revision fc940ce1)
1[package]
2authors = ["Lucio Franco <[email protected]>"]
3edition = "2021"
4license = "MIT"
5name = "interop"
6
7[[bin]]
8name = "client"
9path = "src/bin/client.rs"
10
11[[bin]]
12name = "server"
13path = "src/bin/server.rs"
14
15[dependencies]
16async-stream = "0.3"
17strum = {version = "0.27", features = ["derive"]}
18pico-args = {version = "0.5", features = ["eq-separator"]}
19console = "0.15"
20http = "1"
21http-body = "1"
22http-body-util = "0.1"
23hyper = "1"
24prost = "0.13"
25tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros"]}
26tokio-stream = "0.1"
27tonic = {path = "../tonic", features = ["tls-ring"]}
28tower = "0.5"
29tracing-subscriber = {version = "0.3"}
30
31[build-dependencies]
32tonic-build = {path = "../tonic-build", features = ["prost"]}
33