From 66d1e7d72f06e1970939379fb3167cb35b095bbc Mon Sep 17 00:00:00 2001 From: binarybaron Date: Wed, 28 Aug 2024 12:13:22 +0200 Subject: [PATCH] chore(monero, monero_harness): bump tracing-subscriber to 0.3 --- Cargo.lock | 53 ++++++--------------------------------- monero-harness/Cargo.toml | 2 +- monero-wallet/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a342fd5e..31426cd5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3539,7 +3539,7 @@ dependencies = [ "serde", "serde_json", "tracing", - "tracing-subscriber 0.3.18", + "tracing-subscriber", ] [[package]] @@ -3595,15 +3595,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" -[[package]] -name = "matchers" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" -dependencies = [ - "regex-automata 0.1.10", -] - [[package]] name = "matchers" version = "0.1.0" @@ -3743,7 +3734,7 @@ dependencies = [ "testcontainers", "tokio", "tracing", - "tracing-subscriber 0.2.25", + "tracing-subscriber", ] [[package]] @@ -3778,7 +3769,7 @@ dependencies = [ "rand 0.7.3", "testcontainers", "tokio", - "tracing-subscriber 0.2.25", + "tracing-subscriber", ] [[package]] @@ -6490,7 +6481,7 @@ dependencies = [ "tracing", "tracing-appender", "tracing-futures", - "tracing-subscriber 0.3.18", + "tracing-subscriber", "typeshare", "url", "uuid", @@ -7303,7 +7294,7 @@ dependencies = [ "crossbeam-channel", "thiserror", "time 0.3.36", - "tracing-subscriber 0.3.18", + "tracing-subscriber", ] [[package]] @@ -7339,17 +7330,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "tracing-log" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" -dependencies = [ - "log", - "once_cell", - "tracing-core", -] - [[package]] name = "tracing-log" version = "0.2.0" @@ -7371,31 +7351,14 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-subscriber" -version = "0.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" -dependencies = [ - "ansi_term", - "chrono", - "lazy_static", - "matchers 0.0.1", - "regex", - "sharded-slab", - "thread_local", - "tracing", - "tracing-core", - "tracing-log 0.1.4", -] - [[package]] name = "tracing-subscriber" version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" dependencies = [ - "matchers 0.1.0", + "chrono", + "matchers", "nu-ansi-term", "once_cell", "regex", @@ -7407,7 +7370,7 @@ dependencies = [ "time 0.3.36", "tracing", "tracing-core", - "tracing-log 0.2.0", + "tracing-log", "tracing-serde", ] diff --git a/monero-harness/Cargo.toml b/monero-harness/Cargo.toml index 1151f47a..e15c751d 100644 --- a/monero-harness/Cargo.toml +++ b/monero-harness/Cargo.toml @@ -13,4 +13,4 @@ rand = "0.7" testcontainers = "0.15" tokio = { version = "1", default-features = false, features = [ "rt-multi-thread", "time", "macros" ] } tracing = "0.1" -tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "tracing-log" ] } +tracing-subscriber = { version = "0.3", default-features = false, features = [ "fmt", "ansi", "env-filter", "tracing-log" ] } diff --git a/monero-wallet/Cargo.toml b/monero-wallet/Cargo.toml index 99bd3f4d..9b79be85 100644 --- a/monero-wallet/Cargo.toml +++ b/monero-wallet/Cargo.toml @@ -16,4 +16,4 @@ monero-harness = { path = "../monero-harness" } rand = "0.7" testcontainers = "0.15" tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs" ] } -tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log" ] } +tracing-subscriber = { version = "0.3", default-features = false, features = [ "fmt", "ansi", "env-filter", "chrono", "tracing-log" ] }