Skip to content

Commit 0948b31

Browse files
committed
clean up dependencies
1 parent 9b43cdb commit 0948b31

File tree

7 files changed

+21
-63
lines changed

7 files changed

+21
-63
lines changed

Cargo.lock

Lines changed: 5 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ default-members = ["cli"]
2525

2626
[workspace.dependencies]
2727
# consensus
28-
ssz-rs = { package = "ssz_rs", version = "0.9.0" }
29-
milagro_bls = { package = "snowbridge-milagro-bls", git = "https://github.com/Snowfork/milagro_bls", rev = "6a95c9e33c6a41d9137761e593d53742ebb964de" }
28+
ssz_types = "0.7.0"
29+
ethereum_ssz_derive = "0.6.0"
30+
ethereum_ssz = "0.6.0"
31+
tree_hash_derive = "0.7.0"
32+
tree_hash = "0.7.0"
33+
sha2 = "0.10.8"
34+
milagro_bls = { package = "snowbridge-milagro-bls", git = "https://github.com/Snowfork/milagro_bls", rev = "6a95c9e33c6a41d9137761e593d53742ebb964de"}
3035

3136
# execution
3237
alloy = { version = "0.2.1", features = [
@@ -71,6 +76,7 @@ openssl = { version = "0.10", features = ["vendored"] }
7176
hyper = "1.3.1"
7277
zduny-wasm-timer = "0.2.8"
7378
retri = "0.1.0"
79+
typenum = "1.17.0"
7480

7581
######################################
7682
# Top Level Dependencies

client/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ alloy.workspace = true
88
eyre.workspace = true
99
serde.workspace = true
1010
hex.workspace = true
11-
ssz-rs.workspace = true
1211
futures.workspace = true
1312
tracing.workspace = true
1413
thiserror.workspace = true

common/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ alloy = { version = "0.2.1", features = ["rpc-types"] }
88
eyre.workspace = true
99
serde.workspace = true
1010
hex.workspace = true
11-
ssz-rs.workspace = true
1211
serde_json.workspace = true
1312
superstruct.workspace = true
1413
thiserror.workspace = true

consensus-core/Cargo.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ edition = "2021"
55

66
[dependencies]
77
alloy = { version = "0.2.1", features = ["consensus", "rpc-types", "ssz", "rlp", "k256"] }
8-
ssz_types = "0.7.0"
9-
ethereum_ssz_derive = "0.6.0"
10-
ethereum_ssz = "0.6.0"
11-
tree_hash_derive = "0.7.0"
12-
tree_hash = "0.7.0"
13-
typenum = "1.17.0"
14-
serde_with = { version = "3.9.0", features = ["hex"] }
15-
sha2 = "0.10.8"
8+
ssz_types.workspace = true
9+
ethereum_ssz_derive.workspace = true
10+
ethereum_ssz.workspace = true
11+
tree_hash_derive.workspace = true
12+
tree_hash.workspace = true
13+
typenum.workspace = true
14+
sha2.workspace = true
1615
eyre.workspace = true
1716
hex.workspace = true
1817
serde.workspace = true

consensus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# consensus
88
milagro_bls.workspace = true
9-
tree_hash = "0.7.0"
9+
tree_hash.workspace = true
1010

1111
# async/futures
1212
tokio.workspace = true

execution/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ version = "0.5.5"
44
edition = "2021"
55

66
[dependencies]
7-
# consensus
8-
ssz-rs.workspace = true
9-
107
# execution
118
alloy.workspace = true
129
revm.workspace = true

0 commit comments

Comments
 (0)