Skip to content

Commit 8274995

Browse files
committed
stabilize new channels
Signed-off-by: Marc-Antoine Perennou <[email protected]>
1 parent b1b8355 commit 8274995

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## [Unreleased]
99

10+
The new `async_std::channel` submodule, introduced in 1.8.0, has been stabilized. You no longer need the `unstable` feature to use it.
11+
1012
## Added
1113

1214
- Add `tokio1` feature ([#924](https://github.com/async-rs/async-std/pull/924))

src/channel.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//! Channels
22
3-
#[cfg(feature = "unstable")]
4-
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
53
#[doc(inline)]
64
pub use async_channel::*;

tests/channel.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "unstable")]
2-
31
use std::sync::atomic::{AtomicUsize, Ordering};
42
use std::sync::Arc;
53
use std::time::Duration;

0 commit comments

Comments
 (0)