From 984c08cbad73c51a501b528c53e72f6130976639 Mon Sep 17 00:00:00 2001 From: Tuetuopay Date: Wed, 18 Oct 2023 15:45:50 +0200 Subject: [PATCH] aya: fix unused async-io dependency linter error Not using the `dep:` syntax created a Cargo feature flag for async-io, though this feature alone does nothing without the `async_std` or `async_tokio` features. --- aya/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya/Cargo.toml b/aya/Cargo.toml index cec83a0f6..74ef56608 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -30,7 +30,7 @@ tempfile = { workspace = true } [features] default = [] async_tokio = ["tokio/net"] -async_std = ["async-io"] +async_std = ["dep:async-io"] [package.metadata.docs.rs] all-features = true