Bump to version v1.0.2 (#2001)

Update lighthouse to version `v1.0.2`. 

There are two major updates in this version:
- Updates to the task executor to tokio 0.3 and all sub-dependencies relying on core execution, including libp2p
- Update BLST
This commit is contained in:
Age Manning 2020-11-28 13:22:37 +00:00
parent cadcc9a76b
commit f7183098ee
6 changed files with 18 additions and 18 deletions

26
Cargo.lock generated
View File

@ -611,7 +611,7 @@ dependencies = [
[[package]]
name = "beacon_node"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"beacon_chain",
"clap",
@ -842,7 +842,7 @@ dependencies = [
[[package]]
name = "boot_node"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"beacon_node",
"clap",
@ -1450,9 +1450,9 @@ dependencies = [
[[package]]
name = "csv"
version = "1.1.4"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4666154fd004af3fd6f1da2e81a96fd5a81927fe8ddb6ecc79e2aa6e138b54"
checksum = "f9d58633299b24b515ac72a3f869f8b91306a3cec616a602843a383acd6f9e97"
dependencies = [
"bstr",
"csv-core",
@ -3563,7 +3563,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "lcli"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"bls",
"clap",
@ -3956,7 +3956,7 @@ dependencies = [
[[package]]
name = "lighthouse"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"account_manager",
"account_utils",
@ -4260,7 +4260,7 @@ dependencies = [
"kernel32-sys",
"libc",
"log 0.4.11",
"miow 0.2.1",
"miow 0.2.2",
"net2",
"slab 0.4.2",
"winapi 0.2.8",
@ -4316,9 +4316,9 @@ dependencies = [
[[package]]
name = "miow"
version = "0.2.1"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
"kernel32-sys",
"net2",
@ -4459,9 +4459,9 @@ dependencies = [
[[package]]
name = "net2"
version = "0.2.35"
version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
dependencies = [
"cfg-if 0.1.10",
"libc",
@ -6671,9 +6671,9 @@ dependencies = [
[[package]]
name = "syn"
version = "1.0.51"
version = "1.0.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b4f34193997d92804d359ed09953e25d5138df6bcc055a71bf68ee89fdf9223"
checksum = "6c1e438504729046a5cfae47f97c30d6d083c7d91d94603efdae3477fc070d4c"
dependencies = [
"proc-macro2",
"quote",

View File

@ -1,6 +1,6 @@
[package]
name = "beacon_node"
version = "1.0.1"
version = "1.0.2"
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "boot_node"
version = "1.0.1"
version = "1.0.2"
authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = "2018"

View File

@ -10,7 +10,7 @@ use target_info::Target;
/// `Lighthouse/v0.2.0-1419501f2+`
pub const VERSION: &str = git_version!(
args = ["--always", "--dirty=+"],
prefix = "Lighthouse/v1.0.1-",
prefix = "Lighthouse/v1.0.2-",
fallback = "unknown"
);

View File

@ -1,7 +1,7 @@
[package]
name = "lcli"
description = "Lighthouse CLI (modeled after zcli)"
version = "1.0.1"
version = "1.0.2"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "lighthouse"
version = "1.0.1"
version = "1.0.2"
authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = "2018"