Bump crate versions (#2829)

This commit is contained in:
Paul Hauner
2021-11-29 14:57:54 +11:00
parent f6748537db
commit 82a81524e3
31 changed files with 105 additions and 138 deletions

View File

@@ -6,11 +6,11 @@ edition = "2018"
[dependencies]
ethereum-types = "0.12.1"
eth2_ssz_types = "0.2.1"
eth2_ssz_types = "0.2.2"
eth2_hashing = "0.2.0"
eth2_ssz_derive = "0.3.0"
eth2_ssz = "0.4.0"
tree_hash = "0.4.0"
eth2_ssz = "0.4.1"
tree_hash = "0.4.1"
smallvec = "1.6.1"
[dev-dependencies]

View File

@@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
types = { path = "../types" }
proto_array = { path = "../proto_array" }
eth2_ssz = "0.4.0"
eth2_ssz = "0.4.1"
eth2_ssz_derive = "0.3.0"
[dev-dependencies]

View File

@@ -10,7 +10,7 @@ path = "src/bin.rs"
[dependencies]
types = { path = "../types" }
eth2_ssz = "0.4.0"
eth2_ssz = "0.4.1"
eth2_ssz_derive = "0.3.0"
serde = "1.0.116"
serde_derive = "1.0.116"

View File

@@ -1,6 +1,6 @@
[package]
name = "eth2_ssz"
version = "0.4.0"
version = "0.4.1"
authors = ["Paul Hauner <paul@sigmaprime.io>"]
edition = "2018"
description = "SimpleSerialize (SSZ) as used in Ethereum 2.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "eth2_ssz_types"
version = "0.2.1"
version = "0.2.2"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
description = "Provides types with unique properties required for SSZ serialization and Merklization."
@@ -10,11 +10,11 @@ license = "Apache-2.0"
name = "ssz_types"
[dependencies]
tree_hash = "0.4.0"
tree_hash = "0.4.1"
serde = "1.0.116"
serde_derive = "1.0.116"
eth2_serde_utils = "0.1.0"
eth2_ssz = "0.4.0"
eth2_ssz = "0.4.1"
typenum = "1.12.0"
arbitrary = { version = "1.0", features = ["derive"], optional = true }

View File

@@ -12,11 +12,11 @@ beacon_chain = { path = "../../beacon_node/beacon_chain" }
bls = { path = "../../crypto/bls" }
integer-sqrt = "0.1.5"
itertools = "0.10.0"
eth2_ssz = "0.4.0"
eth2_ssz_types = "0.2.1"
eth2_ssz = "0.4.1"
eth2_ssz_types = "0.2.2"
merkle_proof = { path = "../merkle_proof" }
safe_arith = { path = "../safe_arith" }
tree_hash = "0.4.0"
tree_hash = "0.4.1"
types = { path = "../types", default-features = false }
rayon = "1.4.1"
eth2_hashing = "0.2.0"

View File

@@ -1,6 +1,6 @@
[package]
name = "tree_hash"
version = "0.4.0"
version = "0.4.1"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
license = "Apache-2.0"
@@ -11,7 +11,7 @@ rand = "0.7.3"
tree_hash_derive = "0.4.0"
types = { path = "../types" }
beacon_chain = { path = "../../beacon_node/beacon_chain" }
eth2_ssz = "0.4.0"
eth2_ssz = "0.4.1"
eth2_ssz_derive = "0.3.0"
[dependencies]

View File

@@ -24,12 +24,12 @@ safe_arith = { path = "../safe_arith" }
serde = {version = "1.0.116" , features = ["rc"] }
serde_derive = "1.0.116"
slog = "2.5.2"
eth2_ssz = "0.4.0"
eth2_ssz = "0.4.1"
eth2_ssz_derive = "0.3.0"
eth2_ssz_types = "0.2.1"
eth2_ssz_types = "0.2.2"
swap_or_not_shuffle = { path = "../swap_or_not_shuffle" }
test_random_derive = { path = "../../common/test_random_derive" }
tree_hash = "0.4.0"
tree_hash = "0.4.1"
tree_hash_derive = "0.4.0"
rand_xorshift = "0.2.0"
cached_tree_hash = { path = "../cached_tree_hash" }