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.
pull/821/head
Tuetuopay 11 months ago
parent 8154fb79d3
commit 984c08cbad

@ -30,7 +30,7 @@ tempfile = { workspace = true }
[features] [features]
default = [] default = []
async_tokio = ["tokio/net"] async_tokio = ["tokio/net"]
async_std = ["async-io"] async_std = ["dep:async-io"]
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

Loading…
Cancel
Save