forked from 0glabs/0g-da-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 878 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"grpc",
"server",
"contract-interface",
"storage",
"chain-state",
"utils",
"client",
"da-miner",
"chain-utils",
"key-gen"
]
[workspace.dependencies]
grpc = { path = "./grpc" }
server = { path = "./server" }
contract-interface = { path = "./contract-interface" }
chain-state = { path = "./chain-state" }
storage = { path = "./storage" }
utils = { path = "./utils" }
client = { paht = "./client" }
chain-utils = { path = "./chain-utils"}
da-miner = { path = "./da-miner" }
zg-encoder = { git = "https://github.com/0glabs/0g-da-encoder.git", rev = "6d5bac1", features = ["parallel"]}
# zg-encoder = { path = "../0g-da-encoder/crates/encoder", features = ["parallel"]}
task_executor = { git = "https://github.com/0glabs/0g-storage-node.git", rev = "ef82f643932ad0a2ec28acce47913df187afb77d" }
[profile.release]
panic = 'abort'