-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 844 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
[workspace]
resolver = "2"
members = ["master", "net_interface", "node"]
[workspace.dependencies]
master = { path = "./master" }
node = { path = "./node" }
net_interface = { path = "./net_interface" }
axum = { version = "0.7.5", features = ["ws"] }
bollard = { version = "=0.17.1" }
bincode = { version = "1.3.3" }
bytes = { version = "1.7.2" }
clap = { version = "4.5.17", features = ["derive"] }
rand = { version = "0.8.5" }
sled = { version = "0.34.7" }
prost = { version = "0.13" }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.128" }
futures = { version = "0.3.30" }
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.16" }
tonic = { version = "0.12.2" }
tonic-build = { version = "0.12" }
tower-http = { version = "0.5.2", features = ["fs"] }