mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-30 09:15:33 +00:00
stabilize new channels
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
This commit is contained in:
parent
b1b8355c16
commit
8274995e70
3 changed files with 2 additions and 4 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
The new `async_std::channel` submodule, introduced in 1.8.0, has been stabilized. You no longer need the `unstable` feature to use it.
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
||||||
- Add `tokio1` feature ([#924](https://github.com/async-rs/async-std/pull/924))
|
- Add `tokio1` feature ([#924](https://github.com/async-rs/async-std/pull/924))
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
//! Channels
|
//! Channels
|
||||||
|
|
||||||
#[cfg(feature = "unstable")]
|
|
||||||
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use async_channel::*;
|
pub use async_channel::*;
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#![cfg(feature = "unstable")]
|
|
||||||
|
|
||||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
Loading…
Reference in a new issue