From 9bea1619b3a1b7f5735663acd466f46f5fe53161 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sun, 19 Jun 2022 01:37:33 +1000 Subject: [PATCH] Rm dep `simplelog` Signed-off-by: Jiahao XU --- Cargo.lock | 39 --------------------------------------- Cargo.toml | 1 - 2 files changed, 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21877876..7ec0ca7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,6 @@ dependencies = [ "scopeguard", "semver", "serde", - "simplelog", "strum", "strum_macros", "tar", @@ -940,15 +939,6 @@ dependencies = [ "libc", ] -[[package]] -name = "num_threads" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" -dependencies = [ - "libc", -] - [[package]] name = "once_cell" version = "1.12.0" @@ -1261,17 +1251,6 @@ dependencies = [ "libc", ] -[[package]] -name = "simplelog" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786" -dependencies = [ - "log", - "termcolor", - "time", -] - [[package]] name = "slab" version = "0.4.6" @@ -1454,24 +1433,6 @@ dependencies = [ "syn", ] -[[package]] -name = "time" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd" -dependencies = [ - "itoa", - "libc", - "num_threads", - "time-macros", -] - -[[package]] -name = "time-macros" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" - [[package]] name = "tinytemplate" version = "1.2.1" diff --git a/Cargo.toml b/Cargo.toml index 7cdbcc48..4c896757 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,6 @@ reqwest = { version = "0.11.10", features = [ "rustls-tls", "stream" ], default- scopeguard = "1.1.0" semver = "1.0.7" serde = { version = "1.0.136", features = [ "derive" ] } -simplelog = "0.12.0" strum = "0.24.0" strum_macros = "0.24.0" tar = "0.4.38"