-
Notifications
You must be signed in to change notification settings - Fork 54
/
Cargo.toml
58 lines (56 loc) · 1.53 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
[workspace]
resolver = "2"
members = ["beacon-api-client", "ethereum-consensus", "spec-gen", "spec-tests"]
[workspace.dependencies]
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1.15"
tracing = "0.1"
reqwest = { version = "0.11.10", default-features = false, features = ["json"] }
url = "2.2.2"
http = "0.2.7"
mev-share-sse = { git = "https://github.com/paradigmxyz/mev-share-rs", rev = "9eb2b0138ab3202b9eb3af4b19c7b3bf40b0faa8", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
serde_yaml = "0.8"
itertools = "0.10.3"
thiserror = "1.0.30"
hex = "0.4.3"
ssz_rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "84ef2b71aa004f6767420badb42c902ad56b8b72" }
blst = "0.3.11"
rand = "0.8.4"
sha2 = "0.10.8"
integer-sqrt = "0.1.5"
enr = "0.6.2"
multihash = { version = "0.16", default-features = false, features = [
"std",
"multihash-impl",
"identity",
"sha2",
] }
multiaddr = "0.14.0"
c-kzg = "1.0.0"
bs58 = "0.4.0"
eyre = "0.6.8"
bip39 = "2.0.0"
rand_core = { version = "0.6", features = ["std"] }
rayon = "1.8.0"
hkdf = "0.12.3"
ruint = "1.11.1"
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "serde"] }
scrypt = "0.11.0"
aes = "0.8.3"
ctr = "0.9.2"
base64 = "0.21.4"
unicode-normalization = "0.1.22"
bitvec = "1.0.1"
syn = { version = "1.0.98", features = [
"full",
"visit",
"visit-mut",
"extra-traits",
] }
prettyplease = "0.1.10"
quote = "1.0.18"
clap = { version = "4.5.3", features = ["derive"] }
convert_case = "0.6.0"
walkdir = "2.3.3"