From 84473fc08c046c98719e9d637f417aa2c480b338 Mon Sep 17 00:00:00 2001 From: baoyachi Date: Tue, 19 Jul 2022 17:43:00 +0800 Subject: [PATCH 1/3] fix #23 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b3d44c6..a8791db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT AND Apache-2.0" [dependencies] log = "0.4.11" -log4rs = "0.13.0" +log4rs = { version = "0.13.0", default-features = false, features = ["all_components", "humantime", "serde", "serde-value", "yaml_format"] } once_cell = "1.5.2" serde = { version = "1.0.117", features = ["derive"] } is_debug = "1.0.1" From 2ee22fa195ffffdf1872ba48348a7e46794af96b Mon Sep 17 00:00:00 2001 From: baoyachi Date: Tue, 19 Jul 2022 17:43:46 +0800 Subject: [PATCH 2/3] upgrade simple-log#1.6.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a8791db..bdff26d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-log" -version = "1.5.1" +version = "1.6.0" authors = ["baoyachi "] description = "A simple log. It's really simple use" edition = "2018" From d699069e8a10e589ad8b14d366ad8d5bfa2ba196 Mon Sep 17 00:00:00 2001 From: baoyachi Date: Tue, 19 Jul 2022 17:55:24 +0800 Subject: [PATCH 3/3] fix --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bdff26d..5326418 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT AND Apache-2.0" [dependencies] log = "0.4.11" -log4rs = { version = "0.13.0", default-features = false, features = ["all_components", "humantime", "serde", "serde-value", "yaml_format"] } +log4rs = { version = "0.13.0", default-features = false, features = ["all_components", "humantime", "serde", "serde-value", "yaml_format", "gzip"] } once_cell = "1.5.2" serde = { version = "1.0.117", features = ["derive"] } is_debug = "1.0.1"