mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-02 04:03:35 +00:00
Updates external dependencies (#577)
* Updates external dependencies * Correct fmt formatting
This commit is contained in:
@@ -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 = []
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -5,5 +5,5 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
serde = "1.0"
|
||||
serde = "1.0.102"
|
||||
hex = "0.3"
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -13,4 +13,4 @@ name = "ssz"
|
||||
eth2_ssz_derive = "0.1.0"
|
||||
|
||||
[dependencies]
|
||||
ethereum-types = "0.6"
|
||||
ethereum-types = "0.8.0"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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" }
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user