-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
63 lines (57 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
members = [
"bin/ream",
"crates/common/consensus",
"crates/common/executor",
"crates/networking/discv5",
"crates/networking/p2p",
"crates/rpc",
"crates/runtime",
"crates/storage",
"testing/ef-tests",
]
default-members = ["bin/ream"]
resolver = "2"
[workspace.package]
authors = ["https://github.com/ReamLabs/ream/graphs/contributors"]
edition = "2021"
keywords = ["ethereum", "beam-chain", "blockchain", "consensus", "protocol", "ream"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ReamLabs/ream"
rust-version = "1.81.0"
version = "0.1.0"
[workspace.dependencies]
alloy-primitives = { version = "0.8", features = ['serde'] }
anyhow = "1.0"
blst = "0.3"
kzg = { git = "https://github.com/grandinetech/rust-kzg" }
clap = "4"
discv5 = { version = "0.9.0", features = ["libp2p"] }
enr = "0.13.0"
ethereum_hashing = { git = "https://github.com/ReamLabs/ethereum_hashing.git" }
ethereum_serde_utils = "0.7"
ethereum_ssz = "0.8"
ethereum_ssz_derive = "0.8"
futures = "0.3"
hex = "0.4"
itertools = "0.14"
libp2p-identity = "0.2"
libp2p-mplex = "0.42"
libp2p = { version = "0.54", default-features = false, features = ["identify", "yamux", "noise", "dns", "tcp", "tokio", "plaintext", "secp256k1", "macros", "ecdsa", "metrics", "quic", "upnp", "gossipsub", "ping"] }
rstest = "0.23"
serde = { version = '1.0', features = ['derive', "rc"] }
serde_yaml = "0.9"
snap = "1.1"
ssz_types = "0.10"
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "sync", "signal", "time", "macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
tree_hash = "0.9"
tree_hash_derive = "0.9"
# ream dependencies
ream-discv5 = { path = "crates/networking/discv5"}
ream-executor = { path = "crates/common/executor" }
ream-p2p = { path = "crates/networking/p2p" }
[patch.crates-io]
ethereum_hashing = { git = "https://github.com/ReamLabs/ethereum_hashing.git" }