From abd591c8fa300535f6ac9f682399d3e1edbed171 Mon Sep 17 00:00:00 2001 From: zyl Date: Thu, 5 Jun 2025 14:13:43 -0700 Subject: [PATCH] remove unused tokio macros feature --- Cargo.lock | 12 ------------ Cargo.toml | 5 +---- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f89c29c..5ef7c9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2652,21 +2652,9 @@ dependencies = [ "mio 1.0.4", "pin-project-lite", "socket2", - "tokio-macros", "windows-sys 0.52.0", ] -[[package]] -name = "tokio-macros" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - [[package]] name = "tokio-tungstenite" version = "0.21.0" diff --git a/Cargo.toml b/Cargo.toml index 125920f..0476148 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,10 +35,7 @@ serde_yaml_ng = "0.10" syntect = "5" tera = "1" time = { version = "0.3", features = ["serde-human-readable"] } -tokio = { version = "1", features = [ - "macros", - "rt-multi-thread", -], optional = true } +tokio = { version = "1", features = ["rt-multi-thread"], optional = true } url = { version = "2", features = ["serde"] } walkdir = "2" warp = { version = "0.3", optional = true }