Updates external dependencies (#577)

* Updates external dependencies

* Correct fmt formatting
This commit is contained in:
Age Manning
2019-10-30 12:22:18 +11:00
committed by GitHub
parent 2c6b40be78
commit 5c97ed3562
41 changed files with 272 additions and 280 deletions

View File

@@ -5,17 +5,17 @@ authors = ["Age Manning <Age@AgeManning.com>", "Paul Hauner <paul@sigmaprime.io>
edition = "2018"
[dependencies]
parking_lot = "0.7"
parking_lot = "0.9.0"
store = { path = "../../beacon_node/store" }
types = { path = "../types" }
[dev-dependencies]
criterion = "0.2"
hex = "0.3.2"
yaml-rust = "0.4.2"
criterion = "0.3.0"
hex = "0.3"
yaml-rust = "0.4.3"
bls = { path = "../utils/bls" }
slot_clock = { path = "../utils/slot_clock" }
beacon_chain = { path = "../../beacon_node/beacon_chain" }
env_logger = "0.6.0"
lazy_static = "1.3.0"
rand = "0.7"
env_logger = "0.7.1"
lazy_static = "1.4.0"
rand = "0.7.2"

View File

@@ -6,12 +6,12 @@ edition = "2018"
[dependencies]
int_to_bytes = { path = "../utils/int_to_bytes" }
itertools = "0.8"
parking_lot = "0.7"
itertools = "0.8.1"
parking_lot = "0.9.0"
types = { path = "../types" }
state_processing = { path = "../state_processing" }
eth2_ssz = "0.1"
eth2_ssz_derive = { path = "../utils/ssz_derive" }
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
[dev-dependencies]
rand = "0.5.5"
rand = "0.7.2"

View File

@@ -9,13 +9,13 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.2"
env_logger = "0.6.0"
serde = "1.0"
serde_derive = "1.0"
lazy_static = "1.4"
serde_yaml = "0.8"
eth2_ssz = { path = "../utils/ssz" }
criterion = "0.3.0"
env_logger = "0.7.1"
serde = "1.0.102"
serde_derive = "1.0.102"
lazy_static = "1.4.0"
serde_yaml = "0.8.11"
eth2_ssz = "0.1.2"
beacon_chain = { path = "../../beacon_node/beacon_chain" }
store = { path = "../../beacon_node/store" }
lmd_ghost = { path = "../lmd_ghost" }
@@ -23,15 +23,15 @@ lmd_ghost = { path = "../lmd_ghost" }
[dependencies]
bls = { path = "../utils/bls" }
integer-sqrt = "0.1"
itertools = "0.8"
integer-sqrt = "0.1.2"
itertools = "0.8.1"
eth2_ssz_types = { path = "../utils/ssz_types" }
merkle_proof = { path = "../utils/merkle_proof" }
log = "0.4"
tree_hash = "0.1"
log = "0.4.8"
tree_hash = "0.1.0"
tree_hash_derive = "0.2"
types = { path = "../types" }
rayon = "1.0"
rayon = "1.2.0"
[features]
fake_crypto = ["bls/fake_crypto"]

View File

@@ -8,27 +8,28 @@ edition = "2018"
bls = { path = "../utils/bls" }
compare_fields = { path = "../utils/compare_fields" }
compare_fields_derive = { path = "../utils/compare_fields_derive" }
dirs = "1.0"
derivative = "1.0"
dirs = "2.0.2"
derivative = "1.0.3"
eth2_interop_keypairs = { path = "../utils/eth2_interop_keypairs" }
ethereum-types = "0.6"
eth2_hashing = { path = "../utils/eth2_hashing" }
ethereum-types = "0.8.0"
eth2_hashing = "0.1.0"
hex = "0.3"
int_to_bytes = { path = "../utils/int_to_bytes" }
log = "0.4"
rayon = "1.0"
rand = "0.5.5"
serde = "1.0"
serde_derive = "1.0"
slog = "^2.2.3"
eth2_ssz = "0.1"
eth2_ssz_derive = "0.1"
log = "0.4.8"
rayon = "1.2.0"
rand = "0.7.2"
serde = "1.0.102"
serde_derive = "1.0.102"
slog = "2.5.2"
eth2_ssz = "0.1.2"
eth2_ssz_derive = "0.1.0"
eth2_ssz_types = { path = "../utils/ssz_types" }
swap_or_not_shuffle = { path = "../utils/swap_or_not_shuffle" }
test_random_derive = { path = "../utils/test_random_derive" }
tree_hash = "0.1"
tree_hash = "0.1.0"
tree_hash_derive = "0.2"
rand_xorshift = "0.2.0"
[dev-dependencies]
env_logger = "0.6.0"
serde_json = "^1.0"
env_logger = "0.7.1"
serde_json = "1.0.41"

View File

@@ -91,7 +91,7 @@ mod tests {
}
fn random_tmp_file() -> String {
let mut rng = thread_rng();
let rng = thread_rng();
rng.sample_iter(&Alphanumeric).take(7).collect()
}

View File

@@ -10,8 +10,6 @@ pub use generate_deterministic_keypairs::generate_deterministic_keypair;
pub use generate_deterministic_keypairs::generate_deterministic_keypairs;
pub use generate_deterministic_keypairs::load_keypairs_from_yaml;
pub use keypairs_file::KeypairsFile;
pub use rand::{
RngCore,
{prng::XorShiftRng, SeedableRng},
};
pub use rand::{RngCore, SeedableRng};
pub use rand_xorshift::XorShiftRng;
pub use test_random::TestRandom;

View File

@@ -5,16 +5,16 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
[dependencies]
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v0.11.0" }
eth2_hashing = { path = "../eth2_hashing" }
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v0.11.1" }
eth2_hashing = "0.1.0"
hex = "0.3"
rand = "^0.5"
serde = "1.0"
serde_derive = "1.0"
rand = "0.7.2"
serde = "1.0.102"
serde_derive = "1.0.102"
serde_hex = { path = "../serde_hex" }
eth2_ssz = "0.1"
eth2_ssz = "0.1.2"
eth2_ssz_types = { path = "../ssz_types" }
tree_hash = "0.1"
tree_hash = "0.1.0"
[features]
fake_crypto = []

View File

@@ -5,8 +5,8 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
[dependencies]
clap = "2.32.0"
serde = "1.0"
serde_derive = "1.0"
toml = "^0.5"
clap = "2.33.0"
serde = "1.0.102"
serde_derive = "1.0.102"
toml = "0.5.4"
types = { path = "../../types" }

View File

@@ -7,10 +7,10 @@ license = "Apache-2.0"
description = "Hashing primitives used in Ethereum 2.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ring = "0.14.6"
ring = "0.16.9"
[dev-dependencies]
rustc-hex = "2.0.1"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.2.47"
wasm-bindgen-test = "0.3.2"

View File

@@ -7,14 +7,14 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4"
num-bigint = "0.2"
eth2_hashing = "0.1"
lazy_static = "1.4.0"
num-bigint = "0.2.3"
eth2_hashing = "0.1.0"
hex = "0.3"
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v0.11.0" }
serde_yaml = "0.8"
serde = "1.0"
serde_derive = "1.0"
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v0.11.1" }
serde_yaml = "0.8.11"
serde = "1.0.102"
serde_derive = "1.0.102"
[dev-dependencies]
base64 = "0.10"
base64 = "0.11.0"

View File

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

View File

@@ -9,8 +9,8 @@ edition = "2018"
[dependencies]
eth2_config = { path = "../eth2_config" }
eth2-libp2p = { path = "../../../beacon_node/eth2-libp2p" }
reqwest = "0.9"
reqwest = "0.9.22"
url = "1.2"
types = { path = "../../types" }
serde = "1.0"
slog = { version = "^2.2.3" , features = ["max_level_trace", "release_max_level_trace"] }
serde = "1.0.102"
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }

View File

@@ -7,5 +7,5 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.3.0"
prometheus = "^0.6"
lazy_static = "1.4.0"
prometheus = "0.7.0"

View File

@@ -5,5 +5,5 @@ authors = ["blacktemplar <blacktemplar@a1.net>"]
edition = "2018"
[dependencies]
slog = { version = "^2.2.3" }
slog-term = "^2.4.0"
slog = "2.5.2"
slog-term = "2.4.2"

View File

@@ -5,10 +5,10 @@ authors = ["Michael Sproul <michael@sigmaprime.io>"]
edition = "2018"
[dependencies]
ethereum-types = "0.6"
eth2_hashing = { path = "../eth2_hashing" }
lazy_static = "1.3.0"
ethereum-types = "0.8.0"
eth2_hashing = "0.1.0"
lazy_static = "1.4.0"
[dev-dependencies]
quickcheck = "0.8"
quickcheck_macros = "0.8"
quickcheck = "0.9.0"
quickcheck_macros = "0.8.0"

View File

@@ -5,5 +5,5 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
[dependencies]
serde = "1.0"
serde = "1.0.102"
hex = "0.3"

View File

@@ -6,5 +6,5 @@ edition = "2018"
[dependencies]
types = { path = "../../types" }
lazy_static = "1.3.0"
lazy_static = "1.4.0"
lighthouse_metrics = { path = "../lighthouse_metrics" }

View File

@@ -13,4 +13,4 @@ name = "ssz"
eth2_ssz_derive = "0.1.0"
[dependencies]
ethereum-types = "0.6"
ethereum-types = "0.8.0"

View File

@@ -8,13 +8,13 @@ edition = "2018"
name = "ssz_types"
[dependencies]
tree_hash = "0.1"
serde = "1.0"
serde_derive = "1.0"
tree_hash = "0.1.0"
serde = "1.0.102"
serde_derive = "1.0.102"
serde_hex = { path = "../serde_hex" }
eth2_ssz = "0.1"
typenum = "1.10"
eth2_ssz = "0.1.2"
typenum = "1.11.2"
[dev-dependencies]
serde_yaml = "0.8"
serde_yaml = "0.8.11"
tree_hash_derive = "0.2"

View File

@@ -9,11 +9,11 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.2"
yaml-rust = "0.4.2"
criterion = "0.3.0"
yaml-rust = "0.4.3"
hex = "0.3"
ethereum-types = "0.6"
ethereum-types = "0.8.0"
[dependencies]
eth2_hashing = { path = "../eth2_hashing" }
eth2_hashing = "0.1.0"
int_to_bytes = { path = "../int_to_bytes" }

View File

@@ -11,12 +11,12 @@ name = "benches"
harness = false
[dev-dependencies]
criterion = "0.2"
rand = "0.7"
criterion = "0.3.0"
rand = "0.7.2"
tree_hash_derive = "0.2"
types = { path = "../../types" }
[dependencies]
ethereum-types = "0.6"
eth2_hashing = "0.1"
lazy_static = "1.4"
ethereum-types = "0.8.0"
eth2_hashing = "0.1.0"
lazy_static = "1.4.0"