Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Apr 16, 2024
1 parent 5896444 commit 3700cca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 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.1"
version = "0.8.2"
license = "MIT OR Apache-2.0"
keywords = ["waitgroup", "async", "sync", "notify", "wake"]
categories = ["asynchronous", "concurrency", "data-structures"]
Expand All @@ -31,7 +31,7 @@ pin-project-lite = { version = "0.2", optional = true }

tokio = { version = "1", optional = true, default-features = false, features = ["sync"] }
futures-core = { version = "0.3", default-features = false, optional = true }
agnostic-lite = { version = "0.1", optional = true }
agnostic-lite = { version = "0.3", optional = true }

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions src/future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ use core::{
pub use agnostic_lite::AsyncSpawner;

#[cfg(feature = "smol")]
pub use agnostic_lite::SmolSpawner;
pub use agnostic_lite::smol::SmolSpawner;

#[cfg(feature = "tokio")]
pub use agnostic_lite::TokioSpawner;
pub use agnostic_lite::tokio::TokioSpawner;

#[cfg(feature = "async-std")]
pub use agnostic_lite::AsyncStdSpawner;
pub use agnostic_lite::async_std::AsyncStdSpawner;

#[cfg(feature = "std")]
use std::sync::Arc;
Expand Down

0 comments on commit 3700cca

Please sign in to comment.