From 8f910772ddc0c50cd967a7fd312da43aa3d1a120 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 31 Oct 2025 15:58:59 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(dependencies):=20clap=20te?= =?UTF-8?q?st=20and=20tidy=20ups?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - explicitly list tokio features for clarity and maintainability --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1eb1622..10a1ae8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,11 @@ log = "0.4.28" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" thiserror = "2.0.17" -tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread", "process"] } +tokio = { version = "1.47.1", features = [ + "macros", + "rt-multi-thread", + "process", +] } toml = "0.9.7" base64 = "0.22" flate2 = "1.0"