-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 764 Bytes
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
[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]
protosocket = { workspace = true }
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"] }
histogram = { version = "0.11" }