forked from grpc/grpc-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.22 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
41
[package]
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
edition = "2024"
license = "MIT"
name = "interop"
rust-version = { workspace = true }
[[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 once the protobuf-codegen crate supports configuring the path to
# the protobuf crate used in the generated message code, instead of defaulting
# to `::protobuf`.
protobuf = { version = "4.34.0-release" }
tonic-protobuf = {path = "../tonic-protobuf"}
grpc-protobuf = {path = "../grpc-protobuf"}
rustls = { version = "0.23", default-features = false, features = ["ring"] }
[build-dependencies]
tonic-prost-build = {path = "../tonic-prost-build"}
grpc-protobuf-build = {path = "../grpc-protobuf-build"}