From ff51c2e0c0638b2115494870a1e789be3fb52f59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Oct 2020 09:01:12 +0000 Subject: [PATCH] build(deps): bump tracing-subscriber from 0.2.13 to 0.2.14 Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.2.13 to 0.2.14. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.2.13...tracing-subscriber-0.2.14) Signed-off-by: dependabot[bot] --- Cargo.lock | 62 ++++++++++++++++++++++++++++++++------ zebra-consensus/Cargo.toml | 2 +- zebra-test/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 5 files changed, 56 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58904032..0c1168d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -987,6 +987,19 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "generator" +version = "0.6.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cdc09201b2e8ca1b19290cf7e65de2246b8e91fb6874279722189c4de7b94dc" +dependencies = [ + "cc", + "libc", + "log", + "rustc_version", + "winapi 0.3.9", +] + [[package]] name = "generic-array" version = "0.12.3" @@ -1374,6 +1387,19 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "loom" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0e8460f2f2121162705187214720353c517b97bdfb3494c0b1e33d83ebe4bed" +dependencies = [ + "cfg-if", + "generator", + "scoped-tls", + "serde", + "serde_json", +] + [[package]] name = "matchers" version = "0.0.1" @@ -2212,6 +2238,15 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +dependencies = [ + "semver", +] + [[package]] name = "rusty-fork" version = "0.3.0" @@ -2230,6 +2265,12 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" +[[package]] +name = "scoped-tls" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" + [[package]] name = "scopeguard" version = "1.1.0" @@ -2361,11 +2402,12 @@ dependencies = [ [[package]] name = "sharded-slab" -version = "0.0.9" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06d5a3f5166fb5b42a5439f2eee8b9de149e235961e3eb21c5808fc3ea17ff3e" +checksum = "7b4921be914e16899a80adefb821f8ddb7974e3f1250223575a44ed994882127" dependencies = [ "lazy_static", + "loom", ] [[package]] @@ -2836,7 +2878,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4d7c0b83d4a500748fa5879461652b361edf5c9d51ede2a2ac03875ca185e24" dependencies = [ "tracing", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", ] [[package]] @@ -2847,7 +2889,7 @@ checksum = "bd520fe41c667b437952383f3a1ec14f1fa45d653f719a77eedd6e6a02d8fa54" dependencies = [ "lazy_static", "tracing", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", ] [[package]] @@ -2900,9 +2942,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ef0a5e15477aa303afbfac3a44cba9b6430fdaad52423b1e6c0dbbe28c3eedd" +checksum = "2810660b9d5b18895d140caba6401765749a6a162e5d0736cfc44ea50db9d79d" dependencies = [ "ansi_term 0.12.1", "chrono", @@ -3202,7 +3244,7 @@ dependencies = [ "tracing", "tracing-error", "tracing-futures", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", "zebra-chain", "zebra-script", "zebra-state", @@ -3299,7 +3341,7 @@ dependencies = [ "tower", "tracing", "tracing-error", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", ] [[package]] @@ -3311,7 +3353,7 @@ dependencies = [ "serde_json", "structopt", "tracing-error", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", "zebra-chain", "zebra-consensus", ] @@ -3342,7 +3384,7 @@ dependencies = [ "tracing-error", "tracing-flame", "tracing-futures", - "tracing-subscriber 0.2.13", + "tracing-subscriber 0.2.14", "zebra-chain", "zebra-consensus", "zebra-network", diff --git a/zebra-consensus/Cargo.toml b/zebra-consensus/Cargo.toml index 1752e9d5..c11b81ee 100644 --- a/zebra-consensus/Cargo.toml +++ b/zebra-consensus/Cargo.toml @@ -36,6 +36,6 @@ rand = "0.7" spandoc = "0.2" tokio = { version = "0.2", features = ["full"] } tracing-error = "0.1.2" -tracing-subscriber = "0.2.13" +tracing-subscriber = "0.2.14" zebra-test = { path = "../zebra-test/" } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index b115880f..c6496235 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -14,7 +14,7 @@ tower = { version = "0.3.1", features = ["util"] } futures = "0.3.6" color-eyre = "0.5.6" tracing = "0.1.21" -tracing-subscriber = "0.2.13" +tracing-subscriber = "0.2.14" tracing-error = "0.1.2" spandoc = "0.2.0" regex = "1.4.1" diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 1a3fffee..ba2b2458 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -13,7 +13,7 @@ color-eyre = "0.5.6" hex = "0.4" serde_json = "1.0" tracing-error = { version = "0.1.2", features = ["traced-error"] } -tracing-subscriber = { version = "0.2.13", features = ["tracing-log"] } +tracing-subscriber = { version = "0.2.14", features = ["tracing-log"] } zebra-chain = { path = "../zebra-chain" } zebra-consensus = { path = "../zebra-consensus" } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index ce35f383..7b95e568 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -29,7 +29,7 @@ color-eyre = { version = "0.5.6", features = ["issue-url"] } thiserror = "1" tracing = "0.1" tracing-futures = "0.2" -tracing-subscriber = { version = "0.2.13", features = ["tracing-log"] } +tracing-subscriber = { version = "0.2.14", features = ["tracing-log"] } tracing-error = "0.1.2" metrics-runtime = "0.13"