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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
23 changed files with 485 additions and 358 deletions

795
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
FROM rust:1.43.1 AS builder FROM rust:1.44.1 AS builder
RUN apt-get update && apt-get install -y cmake RUN apt-get update && apt-get install -y cmake
COPY . lighthouse COPY . lighthouse
RUN cd lighthouse && make RUN cd lighthouse && make

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,7 +8,7 @@ edition = "2018"
[dependencies] [dependencies]
lazy_static = "1.4.0" lazy_static = "1.4.0"
num-bigint = "0.2.6" num-bigint = "0.3.0"
eth2_hashing = "0.1.0" eth2_hashing = "0.1.0"
hex = "0.4.2" hex = "0.4.2"
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v1.1.0" } milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v1.1.0" }

View File

@ -8,4 +8,4 @@ edition = "2018"
[dependencies] [dependencies]
lazy_static = "1.4.0" lazy_static = "1.4.0"
prometheus = "0.8.0" prometheus = "0.9.0"

View File

@ -8,4 +8,4 @@ edition = "2018"
types = { path = "../../consensus/types" } types = { path = "../../consensus/types" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
lighthouse_metrics = { path = "../lighthouse_metrics" } lighthouse_metrics = { path = "../lighthouse_metrics" }
parking_lot = "0.10.2" parking_lot = "0.11.0"

View File

@ -13,7 +13,7 @@ lazy_static = { version = "1.4.0", optional = true }
ring = "0.16.9" ring = "0.16.9"
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
sha2 = "0.8.1" sha2 = "0.9.1"
[dev-dependencies] [dev-dependencies]
rustc-hex = "2.1.0" rustc-hex = "2.1.0"

View File

@ -14,4 +14,4 @@ ring = "0.16.9"
bls = { path = "../bls" } bls = { path = "../bls" }
[dev-dependencies] [dev-dependencies]
hex = "0.3" hex = "0.4.2"

View File

@ -17,7 +17,7 @@ uuid = { version = "0.8", features = ["serde", "v4"] }
zeroize = { version = "1.0.0", features = ["zeroize_derive"] } zeroize = { version = "1.0.0", features = ["zeroize_derive"] }
serde = "1.0.110" serde = "1.0.110"
serde_repr = "0.1" serde_repr = "0.1"
hex = "0.3" hex = "0.4.2"
bls = { path = "../bls" } bls = { path = "../bls" }
eth2_ssz = { path = "../../consensus/ssz" } eth2_ssz = { path = "../../consensus/ssz" }
serde_json = "1.0.41" serde_json = "1.0.41"

View File

@ -17,5 +17,5 @@ eth2_key_derivation = { path = "../eth2_key_derivation" }
tiny-bip39 = "0.7.3" tiny-bip39 = "0.7.3"
[dev-dependencies] [dev-dependencies]
hex = "0.3" hex = "0.4.2"
tempfile = "3.1.0" tempfile = "3.1.0"

View File

@ -16,7 +16,7 @@ slog-term = "2.5.0"
slog-async = "2.5.0" slog-async = "2.5.0"
ctrlc = { version = "3.1.4", features = ["termination"] } ctrlc = { version = "3.1.4", features = ["termination"] }
futures = "0.3.5" futures = "0.3.5"
parking_lot = "0.10.2" parking_lot = "0.11.0"
slog-json = "2.3.0" slog-json = "2.3.0"
exit-future = "0.2.0" exit-future = "0.2.0"
lazy_static = "1.4.0" lazy_static = "1.4.0"

View File

@ -10,7 +10,7 @@ edition = "2018"
node_test_rig = { path = "../node_test_rig" } node_test_rig = { path = "../node_test_rig" }
types = { path = "../../consensus/types" } types = { path = "../../consensus/types" }
validator_client = { path = "../../validator_client" } validator_client = { path = "../../validator_client" }
parking_lot = "0.10.2" parking_lot = "0.11.0"
futures = "0.3.5" futures = "0.3.5"
tokio = "0.2.21" tokio = "0.2.21"
eth1_test_rig = { path = "../eth1_test_rig" } eth1_test_rig = { path = "../eth1_test_rig" }

View File

@ -32,7 +32,7 @@ futures = { version = "0.3.5", features = ["compat"] }
dirs = "2.0.2" dirs = "2.0.2"
logging = { path = "../common/logging" } logging = { path = "../common/logging" }
environment = { path = "../lighthouse/environment" } environment = { path = "../lighthouse/environment" }
parking_lot = "0.10.2" parking_lot = "0.11.0"
exit-future = "0.2.0" exit-future = "0.2.0"
libc = "0.2.69" libc = "0.2.69"
eth2_ssz_derive = "0.1.0" eth2_ssz_derive = "0.1.0"

View File

@ -11,7 +11,7 @@ tree_hash = { path = "../../consensus/tree_hash" }
rusqlite = { version = "0.23.1", features = ["bundled"] } rusqlite = { version = "0.23.1", features = ["bundled"] }
r2d2 = "0.8.8" r2d2 = "0.8.8"
r2d2_sqlite = "0.16.0" r2d2_sqlite = "0.16.0"
parking_lot = "0.10.2" parking_lot = "0.11.0"
[dev-dependencies] [dev-dependencies]
rayon = "1.3.0" rayon = "1.3.0"