-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.23 KB
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
[package]
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
edition = "2021"
license = "MIT AND Apache-2.0"
name = "interop"
[[bin]]
name = "client"
path = "src/bin/client.rs"
[[bin]]
name = "server"
path = "src/bin/server.rs"
[dependencies]
async-stream = "0.3"
strum = {version = "0.27", features = ["derive"]}
pico-args = {version = "0.5", features = ["eq-separator"]}
console = "0.16"
http = "1"
http-body-util = "0.1"
prost = "0.14"
tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros"]}
tokio-stream = "0.1"
tonic = {path = "../tonic", features = ["tls-ring"]}
tonic-prost = {path = "../tonic-prost"}
tower = "0.5"
tracing-subscriber = {version = "0.3"}
grpc = {path = "../grpc"}
# TODO: Remove the direct protobuf dependency after updating to version 4.32,
# which includes https://github.com/protocolbuffers/protobuf/pull/22764.
# We also need the protobuf-codegen crate to support configuring the path
# to the protobuf crate used in the generated message code, instead of
# defaulting to `::protobuf`.
protobuf = { version = "4.31.1-release" }
tonic-protobuf = {path = "../tonic-protobuf"}
[build-dependencies]
tonic-prost-build = {path = "../tonic-prost-build"}
tonic-protobuf-build = {path = "../tonic-protobuf-build"}