Update external deps (#1711)

## Issue Addressed

- Resolves #1706 

## Proposed Changes

Updates dependencies across the workspace. Any crate that was not able to be brought to the latest version is listed in #1712.

## Additional Info

NA
This commit is contained in:
Paul Hauner
2020-10-05 08:22:19 +00:00
parent 240181e840
commit ee7c8a0b7e
57 changed files with 385 additions and 342 deletions

View File

@@ -5,13 +5,13 @@ authors = ["Michael Sproul <michael@sigmaprime.io>"]
edition = "2018"
[dependencies]
ethereum-types = "0.9.1"
ethereum-types = "0.9.2"
eth2_ssz_types = { path = "../ssz_types" }
eth2_hashing = "0.1.0"
eth2_ssz_derive = "0.1.0"
eth2_ssz = "0.1.2"
tree_hash = "0.1.0"
smallvec = "1.4.1"
tree_hash = "0.1.1"
smallvec = "1.4.2"
[dev-dependencies]
quickcheck = "0.9.2"

View File

@@ -9,13 +9,13 @@ edition = "2018"
[dependencies]
types = { path = "../types" }
proto_array = { path = "../proto_array" }
eth2_ssz = { path = "../ssz" }
eth2_ssz_derive = { path = "../ssz_derive" }
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
[dev-dependencies]
state_processing = { path = "../../consensus/state_processing" }
beacon_chain = { path = "../../beacon_node/beacon_chain" }
store = { path = "../../beacon_node/store" }
tree_hash = { path = "../../consensus/tree_hash" }
tree_hash = "0.1.1"
slot_clock = { path = "../../common/slot_clock" }
hex = "0.4.2"

View File

@@ -5,8 +5,8 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
[dependencies]
bytes = "0.5.4"
bytes = "0.5.6"
[dev-dependencies]
yaml-rust = "0.4.3"
yaml-rust = "0.4.4"
hex = "0.4.2"

View File

@@ -5,7 +5,7 @@ authors = ["Michael Sproul <michael@sigmaprime.io>"]
edition = "2018"
[dependencies]
ethereum-types = "0.9.1"
ethereum-types = "0.9.2"
eth2_hashing = "0.1.0"
lazy_static = "1.4.0"
safe_arith = { path = "../safe_arith" }

View File

@@ -12,6 +12,6 @@ path = "src/bin.rs"
types = { path = "../types" }
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
serde = "1.0.110"
serde_derive = "1.0.110"
serde_yaml = "0.8.11"
serde = "1.0.116"
serde_derive = "1.0.116"
serde_yaml = "0.8.13"

View File

@@ -5,9 +5,9 @@ authors = ["Paul Hauner <paul@paulhauner.com", "Michael Sproul <michael@sigmapri
edition = "2018"
[dependencies]
serde = { version = "1.0.110", features = ["derive"] }
serde_derive = "1.0.110"
serde = { version = "1.0.116", features = ["derive"] }
serde_derive = "1.0.116"
hex = "0.4.2"
[dev-dependencies]
serde_json = "1.0.52"
serde_json = "1.0.58"

View File

@@ -13,8 +13,8 @@ name = "ssz"
eth2_ssz_derive = "0.1.0"
[dependencies]
ethereum-types = "0.9.1"
smallvec = "1.4.1"
ethereum-types = "0.9.2"
smallvec = "1.4.2"
[features]
arbitrary = ["ethereum-types/arbitrary"]

View File

@@ -11,5 +11,5 @@ name = "ssz_derive"
proc-macro = true
[dependencies]
syn = "1.0.18"
quote = "1.0.4"
syn = "1.0.42"
quote = "1.0.7"

View File

@@ -8,13 +8,13 @@ edition = "2018"
name = "ssz_types"
[dependencies]
tree_hash = "0.1.0"
serde = "1.0.110"
serde_derive = "1.0.110"
tree_hash = "0.1.1"
serde = "1.0.116"
serde_derive = "1.0.116"
serde_utils = { path = "../serde_utils" }
eth2_ssz = "0.1.2"
typenum = "1.12.0"
arbitrary = { version = "0.4.4", features = ["derive"], optional = true }
arbitrary = { version = "0.4.6", features = ["derive"], optional = true }
[dev-dependencies]
tree_hash_derive = "0.2.0"

View File

@@ -9,29 +9,29 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.3.2"
criterion = "0.3.3"
env_logger = "0.7.1"
serde = "1.0.110"
serde_derive = "1.0.110"
serde = "1.0.116"
serde_derive = "1.0.116"
lazy_static = "1.4.0"
serde_yaml = "0.8.11"
serde_yaml = "0.8.13"
[dependencies]
bls = { path = "../../crypto/bls" }
integer-sqrt = "0.1.3"
integer-sqrt = "0.1.5"
itertools = "0.9.0"
eth2_ssz = "0.1.2"
eth2_ssz_types = { path = "../ssz_types" }
merkle_proof = { path = "../merkle_proof" }
log = "0.4.8"
log = "0.4.11"
safe_arith = { path = "../safe_arith" }
tree_hash = "0.1.0"
tree_hash = "0.1.1"
tree_hash_derive = "0.2.0"
types = { path = "../types", default-features = false }
rayon = "1.3.0"
rayon = "1.4.1"
eth2_hashing = "0.1.0"
int_to_bytes = { path = "../int_to_bytes" }
arbitrary = { version = "0.4.4", features = ["derive"], optional = true }
arbitrary = { version = "0.4.6", features = ["derive"], optional = true }
[features]
default = ["legacy-arith"]

View File

@@ -9,11 +9,11 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.3.2"
criterion = "0.3.3"
[dependencies]
eth2_hashing = "0.1.0"
ethereum-types = "0.9.1"
ethereum-types = "0.9.2"
[features]
arbitrary = ["ethereum-types/arbitrary"]

View File

@@ -11,16 +11,16 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.3.2"
criterion = "0.3.3"
rand = "0.7.3"
tree_hash_derive = "0.2.0"
types = { path = "../types" }
lazy_static = "1.4.0"
[dependencies]
ethereum-types = "0.9.1"
ethereum-types = "0.9.2"
eth2_hashing = "0.1.0"
smallvec = "1.4.1"
smallvec = "1.4.2"
[features]
arbitrary = ["ethereum-types/arbitrary"]

View File

@@ -10,5 +10,5 @@ license = "Apache-2.0"
proc-macro = true
[dependencies]
syn = "1.0.18"
quote = "1.0.4"
syn = "1.0.42"
quote = "1.0.7"

View File

@@ -13,38 +13,38 @@ bls = { path = "../../crypto/bls" }
compare_fields = { path = "../../common/compare_fields" }
compare_fields_derive = { path = "../../common/compare_fields_derive" }
eth2_interop_keypairs = { path = "../../common/eth2_interop_keypairs" }
ethereum-types = "0.9.1"
ethereum-types = "0.9.2"
eth2_hashing = "0.1.0"
hex = "0.4.2"
int_to_bytes = { path = "../int_to_bytes" }
log = "0.4.8"
log = "0.4.11"
merkle_proof = { path = "../merkle_proof" }
rayon = "1.3.0"
rayon = "1.4.1"
rand = "0.7.3"
safe_arith = { path = "../safe_arith" }
serde = "1.0.110"
serde_derive = "1.0.110"
serde = "1.0.116"
serde_derive = "1.0.116"
slog = "2.5.2"
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
eth2_ssz_types = { path = "../ssz_types" }
swap_or_not_shuffle = { path = "../swap_or_not_shuffle" }
test_random_derive = { path = "../../common/test_random_derive" }
tree_hash = "0.1.0"
tree_hash = "0.1.1"
tree_hash_derive = "0.2.0"
rand_xorshift = "0.2.0"
cached_tree_hash = { path = "../cached_tree_hash" }
serde_yaml = "0.8.11"
serde_yaml = "0.8.13"
tempfile = "3.1.0"
derivative = "2.1.1"
rusqlite = { version = "0.23.1", features = ["bundled"], optional = true }
arbitrary = { version = "0.4.4", features = ["derive"], optional = true }
rusqlite = { version = "0.24.0", features = ["bundled"], optional = true }
arbitrary = { version = "0.4.6", features = ["derive"], optional = true }
serde_utils = { path = "../serde_utils" }
regex = "1.3.9"
[dev-dependencies]
serde_json = "1.0.52"
criterion = "0.3.2"
serde_json = "1.0.58"
criterion = "0.3.3"
[features]
default = ["sqlite", "legacy-arith"]