From 1a489a7150be3cd8ede37e8f07201b4cbcda5856 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Nov 2025 18:07:58 +0000 Subject: [PATCH] Fix: tokio feature name io-stdio -> io-std --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0f96caa..c176388 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" [dependencies] # CLI and async clap = { version = "4.5", features = ["derive"] } -tokio = { version = "1.40", features = ["rt", "macros", "io-stdio"] } +tokio = { version = "1.40", features = ["rt", "macros", "io-std"] } # Database rusqlite = { version = "0.30", features = ["bundled"] }