|
1 | 1 | [workspace]
|
2 |
| -members = [ |
3 |
| - "bin", |
4 |
| - |
5 |
| - "crates/cli", |
6 |
| - "crates/common", |
7 |
| - "crates/signer", |
8 |
| - "crates/pbs", |
9 |
| - "crates/metrics", |
10 |
| - |
11 |
| - "tests", |
12 |
| - "benches/*", |
13 |
| - "examples/builder_log", |
14 |
| - "examples/da_commit", |
15 |
| - "examples/status_api", |
16 |
| -] |
| 2 | +members = ["benches/*", "bin", "crates/*", "examples/builder_log", "examples/da_commit", "examples/status_api", "tests"] |
17 | 3 | resolver = "2"
|
18 | 4 |
|
19 | 5 | [workspace.package]
|
20 |
| -version = "0.7.0-rc.2" |
21 |
| -rust-version = "1.83" |
22 | 6 | edition = "2021"
|
| 7 | +rust-version = "1.83" |
| 8 | +version = "0.7.0-rc.2" |
23 | 9 |
|
24 | 10 | [workspace.dependencies]
|
25 |
| -cb-cli = { path = "crates/cli" } |
26 |
| -cb-common = { path = "crates/common" } |
27 |
| -cb-metrics = { path = "crates/metrics" } |
28 |
| -cb-pbs = { path = "crates/pbs" } |
29 |
| -cb-signer = { path = "crates/signer" } |
30 |
| - |
31 |
| -# ethereum |
| 11 | +aes = "0.8" |
32 | 12 | alloy = { version = "0.12", features = [
|
33 | 13 | "full",
|
34 |
| - "rpc-types-beacon", |
35 |
| - "serde", |
36 |
| - "ssz", |
37 | 14 | "getrandom",
|
38 | 15 | "providers",
|
| 16 | + "rpc-types-beacon", |
| 17 | + "serde", |
39 | 18 | "signer-local",
|
| 19 | + "ssz", |
40 | 20 | ] }
|
41 |
| -ssz_types = "0.10" |
42 |
| -ethereum_serde_utils = "0.7.0" |
43 |
| - |
44 |
| -# networking |
| 21 | +async-trait = "0.1.80" |
45 | 22 | axum = { version = "0.8.1", features = ["macros"] }
|
46 | 23 | axum-extra = { version = "0.10.0", features = ["typed-header"] }
|
47 |
| -reqwest = { version = "0.12.4", features = ["json", "stream"] } |
48 |
| -headers = "0.4.0" |
49 |
| -tonic = { version = "0.12.3", features = ["tls", "channel", "prost"] } |
50 |
| -tonic-build = "0.12.3" |
51 |
| -prost = "0.13.4" |
52 |
| - |
53 |
| -# async / threads |
54 |
| -tokio = { version = "1.37.0", features = ["full"] } |
| 24 | +base64 = "0.22.1" |
| 25 | +bimap = { version = "0.6.3", features = ["serde"] } |
| 26 | +blsful = "2.5" |
| 27 | +blst = "0.3.11" |
| 28 | +cb-cli = { path = "crates/cli" } |
| 29 | +cb-common = { path = "crates/common" } |
| 30 | +cb-metrics = { path = "crates/metrics" } |
| 31 | +cb-pbs = { path = "crates/pbs" } |
| 32 | +cb-signer = { path = "crates/signer" } |
| 33 | +cipher = "0.4" |
| 34 | +clap = { version = "4.5.4", features = ["derive", "env"] } |
| 35 | +color-eyre = "0.6.3" |
| 36 | +ctr = "0.9.2" |
| 37 | +derive_more = { version = "2.0.1", features = ["deref", "display", "from", "into"] } |
| 38 | +docker-compose-types = "0.16.0" |
| 39 | +eth2_keystore = { git = "https://github.com/sigp/lighthouse", rev = "8d058e4040b765a96aa4968f4167af7571292be2" } |
| 40 | +ethereum_serde_utils = "0.7.0" |
| 41 | +ethereum_ssz = "0.8" |
| 42 | +ethereum_ssz_derive = "0.8" |
| 43 | +eyre = "0.6.12" |
55 | 44 | futures = "0.3.30"
|
56 |
| -async-trait = "0.1.80" |
57 |
| -dashmap = "6.1.0" |
| 45 | +headers = "0.4.0" |
| 46 | +indexmap = "2.2.6" |
| 47 | +lazy_static = "1.5.0" |
58 | 48 | parking_lot = "0.12.3"
|
59 |
| - |
60 |
| -# serialization |
61 |
| -toml = "0.8.13" |
| 49 | +pbkdf2 = "0.12.2" |
| 50 | +prometheus = "0.13.4" |
| 51 | +prost = "0.13.4" |
| 52 | +rand = { version = "0.9", features = ["os_rng"] } |
| 53 | +reqwest = { version = "0.12.4", features = ["json", "stream"] } |
62 | 54 | serde = { version = "1.0.202", features = ["derive"] }
|
63 | 55 | serde_json = "1.0.117"
|
64 | 56 | serde_yaml = "0.9.33"
|
65 |
| -base64 = "0.22.1" |
66 |
| -unicode-normalization = "0.1.24" |
67 |
| -ethereum_ssz = "0.8" |
68 |
| -ethereum_ssz_derive = "0.8" |
69 |
| - |
70 |
| -# telemetry |
| 57 | +sha2 = "0.10.8" |
| 58 | +ssz_types = "0.10" |
| 59 | +thiserror = "2.0.12" |
| 60 | +tokio = { version = "1.37.0", features = ["full"] } |
| 61 | +toml = "0.8.13" |
| 62 | +tonic = { version = "0.12.3", features = ["channel", "prost", "tls"] } |
| 63 | +tonic-build = "0.12.3" |
71 | 64 | tracing = "0.1.40"
|
72 |
| -tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] } |
73 | 65 | tracing-appender = "0.2.3"
|
74 |
| -prometheus = "0.13.4" |
75 |
| - |
76 |
| -# crypto |
77 |
| -blst = "0.3.11" |
78 |
| -blsful = "2.5" |
| 66 | +tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] } |
79 | 67 | tree_hash = "0.9"
|
80 | 68 | tree_hash_derive = "0.9"
|
81 |
| -eth2_keystore = { git = "https://github.com/sigp/lighthouse", rev = "8d058e4040b765a96aa4968f4167af7571292be2" } |
82 |
| -aes = "0.8" |
83 |
| -ctr = "0.9.2" |
84 |
| -cipher = "0.4" |
85 |
| -pbkdf2 = "0.12.2" |
86 |
| -sha2 = "0.10.8" |
87 |
| - |
88 |
| -# docker |
89 |
| -docker-compose-types = "0.16.0" |
90 |
| - |
91 |
| -# misc |
92 |
| -clap = { version = "4.5.4", features = ["derive", "env"] } |
93 |
| -thiserror = "2.0.12" |
94 |
| -color-eyre = "0.6.3" |
95 |
| -eyre = "0.6.12" |
96 |
| -url = { version = "2.5.0", features = ["serde"] } |
97 |
| -uuid = { version = "1.8.0", features = ["v4", "fast-rng", "serde"] } |
98 | 69 | typenum = "1.17.0"
|
99 |
| -rand = { version = "0.9", features = ["os_rng"] } |
100 |
| -dotenvy = "0.15.7" |
101 |
| -indexmap = "2.2.6" |
102 |
| -lazy_static = "1.5.0" |
103 |
| -bimap = { version = "0.6.3", features = ["serde"] } |
104 |
| -derive_more = { version = "2.0.1", features = [ |
105 |
| - "from", |
106 |
| - "into", |
107 |
| - "deref", |
108 |
| - "display", |
109 |
| -] } |
| 70 | +unicode-normalization = "0.1.24" |
| 71 | +url = { version = "2.5.0", features = ["serde"] } |
| 72 | +uuid = { version = "1.8.0", features = ["fast-rng", "serde", "v4"] } |
0 commit comments