From 8d9b6950ecba846386dba817804f054335aff288 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 14 Feb 2022 03:30:34 -0800 Subject: [PATCH] tokio-udev: Remove `mio` dependency (#15) With Tokio 1.0 and `AsyncFd`, `mio` isn't used directly, so this seems to be unnecessary. --- tokio-udev/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tokio-udev/Cargo.toml b/tokio-udev/Cargo.toml index b8bb0fc..c6fa380 100644 --- a/tokio-udev/Cargo.toml +++ b/tokio-udev/Cargo.toml @@ -12,10 +12,9 @@ documentation = "https://docs.rs/tokio-udev" edition = "2018" [dependencies] -mio = { version = "0.7", features = ["os-poll"] } futures-core = "0.3" tokio = { version = "1", features = ["net"] } -udev = { version = "0.6", features = ["mio"] } +udev = { version = "0.6" } [dev-dependencies] futures-util = "0.3"