From 2f605757566277cf8748efe4b3544c5365dc2f06 Mon Sep 17 00:00:00 2001 From: Benjamin Leggett Date: Fri, 31 Jul 2026 18:15:59 -0400 Subject: [PATCH] fix(deps): turn off logger regex --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 382a31a..d864d94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,12 @@ edition = "2024" [dependencies] anyhow = "1.0.102" clap = { version = "4.6.1", features = ["derive"] } -env_logger = "0.11.10" +# Disable the `regex` feature of `env_logger. We don't use it, and it pulls +# in regex deps that nearly double the final binsize. +env_logger = { version = "0.11.10", default-features = false, features = [ + "auto-color", + "humantime", +] } libc = "0.2.186" log = "0.4.30" mktemp-rs = "0.2.0"