Update deps (#1322)

* Run cargo update

* Upgrade prometheus

* Update hex

* Upgrade parking-lot

* Upgrade num-bigint

* Upgrade sha2

* Update dockerfile Rust version

* Run cargo update
This commit is contained in:
Paul Hauner
2020-07-06 11:55:56 +10:00
committed by GitHub
parent c7f47af9fb
commit 25cd91ce26
23 changed files with 485 additions and 358 deletions

View File

@@ -13,7 +13,7 @@ participation_metrics = [] # Exposes validator participation metrics to Prometh
eth2_config = { path = "../../common/eth2_config" }
merkle_proof = { path = "../../consensus/merkle_proof" }
store = { path = "../store" }
parking_lot = "0.10.2"
parking_lot = "0.11.0"
lazy_static = "1.4.0"
smallvec = "1.4.0"
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }

View File

@@ -15,9 +15,9 @@ network = { path = "../network" }
timer = { path = "../timer" }
eth2_libp2p = { path = "../eth2_libp2p" }
rest_api = { path = "../rest_api" }
parking_lot = "0.10.2"
parking_lot = "0.11.0"
websocket_server = { path = "../websocket_server" }
prometheus = "0.8.0"
prometheus = "0.9.0"
types = { path = "../../consensus/types" }
tree_hash = "0.1.0"
eth2_config = { path = "../../common/eth2_config" }

View File

@@ -22,7 +22,7 @@ eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
tree_hash = "0.1.0"
eth2_hashing = "0.1.0"
parking_lot = "0.10.2"
parking_lot = "0.11.0"
slog = "2.5.2"
tokio = { version = "0.2.21", features = ["full"] }
state_processing = { path = "../../consensus/state_processing" }

View File

@@ -25,8 +25,8 @@ lazy_static = "1.4.0"
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
smallvec = "1.4.0"
lru = "0.5.1"
parking_lot = "0.10.2"
sha2 = "0.8.2"
parking_lot = "0.11.0"
sha2 = "0.9.1"
base64 = "0.12.1"
snap = "1.0.0"
void = "1.0.2"

View File

@@ -19,7 +19,7 @@ eth2_ssz = "0.1.2"
eth2_hashing = "0.1.0"
tree_hash = "0.1.0"
tokio = { version = "0.2.21", features = ["full"] }
parking_lot = "0.10.2"
parking_lot = "0.11.0"
slog = "2.5.2"
exit-future = "0.2.0"
serde = "1.0.110"

View File

@@ -29,7 +29,7 @@ tree_hash = "0.1.0"
futures = "0.3.5"
error-chain = "0.12.2"
tokio = { version = "0.2.21", features = ["full"] }
parking_lot = "0.10.2"
parking_lot = "0.11.0"
smallvec = "1.4.0"
# TODO: Remove rand crate for mainnet
rand = "0.7.3"

View File

@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
int_to_bytes = { path = "../../consensus/int_to_bytes" }
parking_lot = "0.10.2"
parking_lot = "0.11.0"
types = { path = "../../consensus/types" }
state_processing = { path = "../../consensus/state_processing" }
eth2_ssz = "0.1.2"

View File

@@ -32,7 +32,7 @@ eth2_config = { path = "../../common/eth2_config" }
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
slot_clock = { path = "../../common/slot_clock" }
hex = "0.4.2"
parking_lot = "0.10.2"
parking_lot = "0.11.0"
futures = "0.3.5"
operation_pool = { path = "../operation_pool" }
rayon = "1.3.0"

View File

@@ -16,7 +16,7 @@ rayon = "1.3.0"
[dependencies]
db-key = "0.0.5"
leveldb = "0.8.5"
parking_lot = "0.10.2"
parking_lot = "0.11.0"
itertools = "0.9.0"
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"

View File

@@ -10,6 +10,6 @@ types = { path = "../../consensus/types" }
slot_clock = { path = "../../common/slot_clock" }
tokio = { version = "0.2.21", features = ["full"] }
slog = "2.5.2"
parking_lot = "0.10.2"
parking_lot = "0.11.0"
futures = "0.3.5"
environment = { path = "../../lighthouse/environment" }