Skip to content

Commit

Permalink
aya: fix unused async-io dependency linter error
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Tuetuopay committed Oct 18, 2023
1 parent 8154fb7 commit 984c08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aya/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 984c08c

Please sign in to comment.