remove unused tokio macros feature

This commit is contained in:
zyl 2025-06-05 14:13:43 -07:00
parent 2330648b69
commit abd591c8fa
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
2 changed files with 1 additions and 16 deletions

12
Cargo.lock generated
View file

@ -2652,21 +2652,9 @@ dependencies = [
"mio 1.0.4", "mio 1.0.4",
"pin-project-lite", "pin-project-lite",
"socket2", "socket2",
"tokio-macros",
"windows-sys 0.52.0", "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]] [[package]]
name = "tokio-tungstenite" name = "tokio-tungstenite"
version = "0.21.0" version = "0.21.0"

View file

@ -35,10 +35,7 @@ serde_yaml_ng = "0.10"
syntect = "5" syntect = "5"
tera = "1" tera = "1"
time = { version = "0.3", features = ["serde-human-readable"] } time = { version = "0.3", features = ["serde-human-readable"] }
tokio = { version = "1", features = [ tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
"macros",
"rt-multi-thread",
], optional = true }
url = { version = "2", features = ["serde"] } url = { version = "2", features = ["serde"] }
walkdir = "2" walkdir = "2"
warp = { version = "0.3", optional = true } warp = { version = "0.3", optional = true }