From 1ac81f0e9bb554abbe653ae1be1f39f2380a2730 Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Wed, 26 Apr 2023 13:51:49 +0400 Subject: [PATCH] fix: added missing log4rs features --- common/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 5ef99554ec..af6a6761f2 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -21,7 +21,7 @@ config = { version = "0.13.0", default_features = false, features = ["toml"] } dirs-next = "1.0.2" git2 = { version = "0.8", default_features = false, optional = true } log = "0.4.8" -log4rs = { version = "1.2.0", default_features = false, features = ["config_parsing", "threshold_filter", "yaml_format"] } +log4rs = { version = "1.2.0", default_features = false, features = ["config_parsing", "threshold_filter", "yaml_format", "console_appender", "rolling_file_appender", "compound_policy", "size_trigger", "fixed_window_roller"] } multiaddr = { version = "0.14.0" } path-clean = "0.1.0" prost-build = { version = "0.9.0", optional = true }