Move util services to ntex-util (#89)

* move util services to ntex-util

* update versions
This commit is contained in:
Nikolay Kim 2022-01-03 21:59:35 +06:00 committed by GitHub
parent 847f2738dd
commit bf808d4d18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 182 additions and 92 deletions

View file

@ -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

View file

@ -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"

View file

@ -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,
})
}))
}
}