mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Move util services to ntex-util (#89)
* move util services to ntex-util * update versions
This commit is contained in:
parent
847f2738dd
commit
bf808d4d18
25 changed files with 182 additions and 92 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.3.1] - 2022-01-03
|
||||
|
||||
* Do not depend on ntex-util
|
||||
|
||||
## [0.3.0] - 2021-12-30
|
||||
|
||||
* Remove fn_transform
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-service"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntex service"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -16,8 +16,8 @@ name = "ntex_service"
|
|||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
ntex-util = "0.1.5"
|
||||
pin-project-lite = "0.2.6"
|
||||
|
||||
[dev-dependencies]
|
||||
ntex = "0.5.0"
|
||||
ntex-util = "0.1.5"
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
use std::task::{Context, Poll};
|
||||
use std::{cell::Cell, future::Future, marker::PhantomData};
|
||||
|
||||
use ntex_util::future::Ready;
|
||||
use std::{cell::Cell, future::ready, future::Future, future::Ready, marker::PhantomData};
|
||||
|
||||
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
||||
|
||||
|
@ -304,18 +302,18 @@ where
|
|||
|
||||
type Service = FnService<F, Fut, Req, Res, Err, FShut>;
|
||||
type InitError = ();
|
||||
type Future = Ready<Self::Service, Self::InitError>;
|
||||
type Future = Ready<Result<Self::Service, Self::InitError>>;
|
||||
|
||||
#[inline]
|
||||
fn new_service(&self, _: Cfg) -> Self::Future {
|
||||
let f = self.f_shutdown.take();
|
||||
self.f_shutdown.set(f.clone());
|
||||
|
||||
Ready::Ok(FnService {
|
||||
ready(Ok(FnService {
|
||||
f: self.f.clone(),
|
||||
f_shutdown: Cell::new(f),
|
||||
_t: PhantomData,
|
||||
})
|
||||
}))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue