From f11073753936905516e52d1e79a21c103320bfbd Mon Sep 17 00:00:00 2001 From: Guillaume Yziquel Date: Tue, 18 Jul 2023 11:22:11 +0200 Subject: [PATCH] Enabling RUST_LOG parsing by enabling unicode-case feature of regex crate. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 545c159..926fca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,6 +29,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1" tracing-subscriber = "0.2" +regex = { version = "1.9", features = ["unicode-case"] } tracing-futures = "0.2" futures = "0.3" semver = { version = "0.11", features = ["serde"] }