-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1.14 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
[package]
name = "example-proto"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "example-proto-server"
path = "src/server.rs"
[[bin]]
name = "example-proto-client"
path = "src/client.rs"
[dependencies]
level-runtime = { workspace = true }
protosocket = { workspace = true }#, features = ["tracing"]}
protosocket-prost = { workspace = true }
protosocket-rpc = { workspace = true }
protosocket-server = { workspace = true }
bytes = { workspace = true }
env_logger = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
prost = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
histogram = { version = "0.11" }
opentelemetry = { version = "0.31" }
opentelemetry_sdk = { version = "0.31" }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic"] }
tracing-opentelemetry = { version = "0.32", default-features = false }
tracing-subscriber = { version = "0.3" }