remove patched dependencies (#4470)

This commit is contained in:
realbigsean
2023-07-05 15:53:35 -04:00
committed by GitHub
parent af4a66846e
commit ba65812972
25 changed files with 47 additions and 47 deletions

View File

@@ -6,11 +6,11 @@ edition = "2021"
[dependencies]
ethereum-types = "0.14.1"
ssz_types = "0.5.3"
ssz_types = "0.5.4"
ethereum_hashing = "1.0.0-beta.2"
ethereum_ssz_derive = "0.5.0"
ethereum_ssz_derive = "0.5.3"
ethereum_ssz = "0.5.0"
tree_hash = "0.5.0"
tree_hash = "0.5.2"
smallvec = "1.6.1"
[dev-dependencies]

View File

@@ -11,7 +11,7 @@ types = { path = "../types" }
state_processing = { path = "../state_processing" }
proto_array = { path = "../proto_array" }
ethereum_ssz = "0.5.0"
ethereum_ssz_derive = "0.5.0"
ethereum_ssz_derive = "0.5.3"
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }
[dev-dependencies]

View File

@@ -11,7 +11,7 @@ path = "src/bin.rs"
[dependencies]
types = { path = "../types" }
ethereum_ssz = "0.5.0"
ethereum_ssz_derive = "0.5.0"
ethereum_ssz_derive = "0.5.3"
serde = "1.0.116"
serde_derive = "1.0.116"
serde_yaml = "0.8.13"

View File

@@ -14,11 +14,11 @@ bls = { path = "../../crypto/bls" }
integer-sqrt = "0.1.5"
itertools = "0.10.0"
ethereum_ssz = "0.5.0"
ethereum_ssz_derive = "0.5.0"
ssz_types = "0.5.3"
ethereum_ssz_derive = "0.5.3"
ssz_types = "0.5.4"
merkle_proof = { path = "../merkle_proof" }
safe_arith = { path = "../safe_arith" }
tree_hash = "0.5.0"
tree_hash = "0.5.2"
types = { path = "../types", default-features = false }
rayon = "1.4.1"
ethereum_hashing = "1.0.0-beta.2"

View File

@@ -27,11 +27,11 @@ serde = {version = "1.0.116" , features = ["rc"] }
serde_derive = "1.0.116"
slog = "2.5.2"
ethereum_ssz = { version = "0.5.0", features = ["arbitrary"] }
ethereum_ssz_derive = "0.5.0"
ssz_types = { version = "0.5.3", features = ["arbitrary"] }
ethereum_ssz_derive = "0.5.3"
ssz_types = { version = "0.5.4", features = ["arbitrary"] }
swap_or_not_shuffle = { path = "../swap_or_not_shuffle", features = ["arbitrary"] }
test_random_derive = { path = "../../common/test_random_derive" }
tree_hash = { version = "0.5.0", features = ["arbitrary"] }
tree_hash = { version = "0.5.2", features = ["arbitrary"] }
tree_hash_derive = "0.5.0"
rand_xorshift = "0.3.0"
cached_tree_hash = { path = "../cached_tree_hash" }