-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
40 lines (36 loc) · 1.45 KB
/
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
34
35
36
37
38
39
40
[workspace]
resolver = "2"
members = [
"clients/implementations/avail",
"clients/implementations/celestia",
"clients/config/config",
"clients/config/proto_config",
"utils",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
repository = "https://github.com/matter-labs/hyperchain-da"
license = "MIT OR Apache-2.0"
keywords = ["blockchain", "zksync", "data-availability"]
categories = ["cryptography"]
[workspace.dependencies]
async-trait = "0.1"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
tokio = "1"
prost = "0.12"
zksync_node_framework = { git = "https://github.com/matter-labs/zksync-era", rev = "30edda404193938fbd55815bed164b5321d7c642" }
zksync_env_config = { git = "https://github.com/matter-labs/zksync-era", rev = "30edda404193938fbd55815bed164b5321d7c642" }
zksync_da_client = { git = "https://github.com/matter-labs/zksync-era", rev = "30edda404193938fbd55815bed164b5321d7c642" }
zksync_protobuf = "=0.1.0-rc.11"
zksync_protobuf_build = "=0.1.0-rc.11"
da_utils = { version = "0.1.0", path = "utils" }
da_config = { version = "0.1.0", path = "clients/config/config" }
proto_config = { version = "0.1.0", path = "clients/config/proto_config" }
avail_client = { version = "0.1.0", path = "clients/implementations/avail" }
celestia_client = { version = "0.1.0", path = "clients/implementations/celestia" }