mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Updates
This commit is contained in:
parent
a9c0348b98
commit
2939a55569
6 changed files with 8 additions and 7 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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> {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Changes
|
||||
|
||||
## [0.4.26] - 2025-03-xx
|
||||
## [0.4.26] - 2025-03-12
|
||||
|
||||
* Add "neon" runtime support
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue