Skip to content

Commit

Permalink
Fix future feature
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Mar 13, 2024
1 parent d8a34b4 commit 5896444
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://github.com/al8n/wg"
repository = "https://github.com/al8n/wg.git"
documentation = "https://docs.rs/wg/"
readme = "README.md"
version = "0.8.0"
version = "0.8.1"
license = "MIT OR Apache-2.0"
keywords = ["waitgroup", "async", "sync", "notify", "wake"]
categories = ["asynchronous", "concurrency", "data-structures"]
Expand All @@ -18,10 +18,10 @@ std = ["triomphe?/default", "event-listener?/default", "futures-core?/default",
triomphe = ["dep:triomphe"]
parking_lot = ["dep:parking_lot"]

future = ["event-listener", "pin-project-lite"]
future = ["event-listener", "pin-project-lite", "agnostic-lite"]
tokio = ["dep:tokio", "futures-core", "pin-project-lite", "agnostic-lite/tokio"]
smol = ["agnostic-lite/smol"]
async-std = ["agnostic-lite/async-std"]
smol = ["agnostic-lite/smol", "future"]
async-std = ["agnostic-lite/async-std", "future"]

[dependencies]
parking_lot = { version = "0.12", optional = true }
Expand Down

0 comments on commit 5896444

Please sign in to comment.