This commit is contained in:
Nikolay Kim 2025-03-11 23:08:41 +05:00
parent a9c0348b98
commit 2939a55569
6 changed files with 8 additions and 7 deletions

View file

@ -1,8 +1,8 @@
# Changes
## [2.5.0] - 2025-03-10
## [2.5.0] - 2025-03-12
* Add ntex-runtime support
* Add neon runtime support
* Drop glommio support

View file

@ -54,8 +54,8 @@ struct StreamOpsInner<T> {
}
struct StreamOpsStorage<T> {
streams: Slab<StreamItem<T>>,
ops: Slab<Operation>,
streams: Slab<StreamItem<T>>,
}
impl<T: AsRawFd + 'static> StreamOps<T> {

View file

@ -1,6 +1,6 @@
# Changes
## [0.4.26] - 2025-03-xx
## [0.4.26] - 2025-03-12
* Add "neon" runtime support

View file

@ -154,6 +154,7 @@ impl Arbiter {
.try_send(ArbiterCommand::Execute(Box::pin(future)));
}
#[rustfmt::skip]
/// Send a function to the Arbiter's thread. This function will be executed asynchronously.
/// A future is created, and when resolved will contain the result of the function sent
/// to the Arbiters thread.

View file

@ -259,7 +259,7 @@ mod neon {
/// completes.
pub fn block_on<F: Future<Output = ()>>(fut: F) {
log::info!(
"Starting compio runtime, driver {:?}",
"Starting neon runtime, driver {:?}",
ntex_neon::driver::DriverType::current()
);
let rt = Runtime::new().unwrap();

View file

@ -1,8 +1,8 @@
# Changes
## [2.12.0] - 2025-03-10
## [2.12.0] - 2025-03-12
* Add "ntex-runtime" support
* Add neon runtime support
* Drop glommio support