From f55c09c7d4e8d9bec9319c6fa00031d7769aad7f Mon Sep 17 00:00:00 2001 From: Mac L Date: Tue, 16 Nov 2021 09:18:45 +1100 Subject: [PATCH] Use new `sloggers` version --- Cargo.lock | 5 +++-- beacon_node/beacon_chain/Cargo.toml | 2 +- beacon_node/eth1/Cargo.toml | 2 +- beacon_node/network/Cargo.toml | 2 +- beacon_node/store/Cargo.toml | 2 +- common/logging/Cargo.toml | 2 +- lighthouse/Cargo.toml | 2 +- lighthouse/environment/Cargo.toml | 2 +- slasher/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14a7f6acb30..7425649af61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5342,8 +5342,9 @@ dependencies = [ [[package]] name = "sloggers" -version = "2.0.2" -source = "git+https://github.com/macladson/sloggers?rev=c962164#c96216411cdf7462324ffa21111bbbf7d9a24c28" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e20d36cb80da75a9c5511872f15247ddad14ead8c1dd97a86b56d1be9f5d4a0e" dependencies = [ "chrono", "libc", diff --git a/beacon_node/beacon_chain/Cargo.toml b/beacon_node/beacon_chain/Cargo.toml index 1bb6f34a2af..da0e10cc6ab 100644 --- a/beacon_node/beacon_chain/Cargo.toml +++ b/beacon_node/beacon_chain/Cargo.toml @@ -26,7 +26,7 @@ rayon = "1.4.1" serde = "1.0.116" serde_derive = "1.0.116" slog = { version = "2.5.2", features = ["max_level_trace"] } -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" slot_clock = { path = "../../common/slot_clock" } eth2_hashing = "0.2.0" eth2_ssz = "0.4.0" diff --git a/beacon_node/eth1/Cargo.toml b/beacon_node/eth1/Cargo.toml index 1c09674dd6f..fa7c97755dd 100644 --- a/beacon_node/eth1/Cargo.toml +++ b/beacon_node/eth1/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" eth1_test_rig = { path = "../../testing/eth1_test_rig" } toml = "0.5.6" web3 = { version = "0.17.0", default-features = false, features = ["http-tls", "signing", "ws-tls-tokio"] } -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" environment = { path = "../../lighthouse/environment" } [dependencies] diff --git a/beacon_node/network/Cargo.toml b/beacon_node/network/Cargo.toml index 1b9920ee07e..1da5e8750dc 100644 --- a/beacon_node/network/Cargo.toml +++ b/beacon_node/network/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Sigma Prime "] edition = "2018" [dev-dependencies] -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" genesis = { path = "../genesis" } matches = "0.1.8" exit-future = "0.2.0" diff --git a/beacon_node/store/Cargo.toml b/beacon_node/store/Cargo.toml index 8186a50fd0c..2d49fd5ffd7 100644 --- a/beacon_node/store/Cargo.toml +++ b/beacon_node/store/Cargo.toml @@ -23,5 +23,5 @@ serde_derive = "1.0.116" lazy_static = "1.4.0" lighthouse_metrics = { path = "../../common/lighthouse_metrics" } lru = "0.6.0" -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" directory = { path = "../../common/directory" } diff --git a/common/logging/Cargo.toml b/common/logging/Cargo.toml index 0faf5dda7e3..2c93aa0d2c1 100644 --- a/common/logging/Cargo.toml +++ b/common/logging/Cargo.toml @@ -12,4 +12,4 @@ slog = "2.5.2" slog-term = "2.6.0" lighthouse_metrics = { path = "../lighthouse_metrics" } lazy_static = "1.4.0" -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" diff --git a/lighthouse/Cargo.toml b/lighthouse/Cargo.toml index c7593419715..463eedfd284 100644 --- a/lighthouse/Cargo.toml +++ b/lighthouse/Cargo.toml @@ -20,7 +20,7 @@ spec-minimal = [] [dependencies] beacon_node = { "path" = "../beacon_node" } slog = { version = "2.5.2", features = ["max_level_trace"] } -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" types = { "path" = "../consensus/types" } bls = { path = "../crypto/bls" } eth2_hashing = "0.2.0" diff --git a/lighthouse/environment/Cargo.toml b/lighthouse/environment/Cargo.toml index d277f18c47e..f8d58237317 100644 --- a/lighthouse/environment/Cargo.toml +++ b/lighthouse/environment/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] tokio = { version = "1.10.0", features = ["macros", "rt", "rt-multi-thread", "signal" ] } slog = { version = "2.5.2", features = ["max_level_trace"] } -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" types = { path = "../../consensus/types" } eth2_config = { path = "../../common/eth2_config" } task_executor = { path = "../../common/task_executor" } diff --git a/slasher/Cargo.toml b/slasher/Cargo.toml index ab1e4e424ca..90983778203 100644 --- a/slasher/Cargo.toml +++ b/slasher/Cargo.toml @@ -21,7 +21,7 @@ safe_arith = { path = "../consensus/safe_arith" } serde = "1.0" serde_derive = "1.0" slog = "2.5.2" -sloggers = { git = "https://github.com/macladson/sloggers", rev = "c962164" } +sloggers = "2.1.1" tree_hash = "0.4.0" tree_hash_derive = "0.4.0" types = { path = "../consensus/types" }