From d2a31ca74ddc52f0301f521a987cad607366e276 Mon Sep 17 00:00:00 2001 From: Pawan Dogra Date: Tue, 18 Apr 2023 09:23:03 +0000 Subject: [PATCH] simple logger 4.1.0 in ffi/diplomat --- Cargo.lock | 25 +++++++------------------ ffi/diplomat/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b608e31e5e..9f25411987f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -467,9 +467,9 @@ dependencies = [ [[package]] name = "colored" -version = "1.9.3" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59" +checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" dependencies = [ "atty", "lazy_static", @@ -1610,7 +1610,7 @@ dependencies = [ "icu_timezone", "log", "serde", - "simple_logger 1.16.0", + "simple_logger", "tinystr", "unicode-bidi", "writeable", @@ -1767,7 +1767,7 @@ dependencies = [ "serde", "serde-aux", "serde_json", - "simple_logger 4.1.0", + "simple_logger", "syn 1.0.109", "tinystr", "toml", @@ -2167,7 +2167,7 @@ dependencies = [ "quote", "repodata", "rust-format", - "simple_logger 4.1.0", + "simple_logger", "zip", ] @@ -3407,19 +3407,6 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" -[[package]] -name = "simple_logger" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45b60258a35dc3cb8a16890b8fd6723349bfa458d7960e25e633f1b1c19d7b5e" -dependencies = [ - "atty", - "colored", - "log", - "time 0.3.17", - "winapi", -] - [[package]] name = "simple_logger" version = "4.1.0" @@ -3427,7 +3414,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e78beb34673091ccf96a8816fce8bfd30d1292c7621ca2bcb5f2ba0fae4f558d" dependencies = [ "atty", + "colored", "log", + "time 0.3.17", "windows-sys 0.42.0", ] diff --git a/ffi/diplomat/Cargo.toml b/ffi/diplomat/Cargo.toml index 168804b6a87..b9921c05a7b 100644 --- a/ffi/diplomat/Cargo.toml +++ b/ffi/diplomat/Cargo.toml @@ -129,7 +129,7 @@ diplomat-runtime = { version = "0.5.1" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # Logging is automagical in wasm, we only need this for native -simple_logger = { version = "1.12", optional = true } +simple_logger = { version = "4.1.0", optional = true } log = { version = "0.4", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies]