From 2789ab347e43e01e3820529068ca03a7c4247c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Carr?= Date: Tue, 29 Mar 2022 19:37:30 -0700 Subject: [PATCH] fix(logging): bump simple_logger to version 2.1.0 Fix a bug where simple_logger would not start due to time crate not providing a local timestamp. simple_logger 2.x.x now displays by default the timestamp in UTC which does not have this issue. Since we are not displaying timestamp in logs, this bump is harmless. Issue: https://github.com/borntyping/rust-simple_logger/issues/51 Fix & recomendation: https://github.com/borntyping/rust-simple_logger/issues/52 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe7ec00..fa33ec3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,9 +155,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", @@ -681,9 +681,9 @@ dependencies = [ [[package]] name = "simple_logger" -version = "1.15.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "205596cf77a15774e5601c5ef759f4211ac381c0855a1f1d5e24a46f60f93e9a" +checksum = "c75a9723083573ace81ad0cdfc50b858aa3c366c48636edb4109d73122a0c0ea" dependencies = [ "atty", "colored", diff --git a/Cargo.toml b/Cargo.toml index 8e46ef8..0051c87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ documentation = "https://github.com/dimtion/copiepate" [dependencies] clipboard = "0.5.0" log = "0.4.14" -simple_logger = { version = "1.11.0", features = ["stderr"] } +simple_logger = { version = "2.1.0", features = ["stderr"] } etcetera = "0.3.2" structopt = "0.3.21" config = "0.11.0"