mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Prepare release
This commit is contained in:
parent
5869141954
commit
c864b10e62
14 changed files with 32 additions and 29 deletions
|
@ -17,8 +17,8 @@ path = "src/lib.rs"
|
|||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-io = "1.0.0-b.0"
|
||||
ntex-util = "1.0.0-b.0"
|
||||
ntex-io = "1.0.0-b.1"
|
||||
ntex-util = "1.0.0-b.1"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
async-std = { version = "1", features = ["unstable"] }
|
||||
|
|
|
@ -34,7 +34,7 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"]
|
|||
async-std = ["ntex-rt/async-std", "ntex-async-std"]
|
||||
|
||||
[dependencies]
|
||||
ntex-service = "2.0.0-b.0"
|
||||
ntex-service = "2.0.0"
|
||||
ntex-io = "1.0.0-b.1"
|
||||
ntex-tls = "1.0.0-b.1"
|
||||
ntex-util = "1.0.0-b.1"
|
||||
|
|
|
@ -19,7 +19,7 @@ path = "src/lib.rs"
|
|||
ntex-codec = "0.6.2"
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-util = "1.0.0-b.1"
|
||||
ntex-service = "2.0.0-b.0"
|
||||
ntex-service = "2.0.0"
|
||||
|
||||
bitflags = "2.4"
|
||||
log = "0.4"
|
||||
|
|
|
@ -28,7 +28,7 @@ tokio = ["tok-io"]
|
|||
async-std = ["async_std/unstable"]
|
||||
|
||||
[dependencies]
|
||||
async-channel = "2.0"
|
||||
async-channel = "2.1"
|
||||
futures-core = "0.3"
|
||||
log = "0.4"
|
||||
oneshot = "0.1"
|
||||
|
|
|
@ -165,7 +165,7 @@ mod tests {
|
|||
#[ntex::test]
|
||||
async fn test_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let srv = chain(Srv1(cnt.clone())).and_then(Srv2(cnt)).pipeline();
|
||||
let srv = chain(Srv1(cnt.clone())).and_then(Srv2(cnt)).into_pipeline();
|
||||
let res = srv.call("srv1").await;
|
||||
assert!(res.is_ok());
|
||||
assert_eq!(res.unwrap(), ("srv1", "srv2"));
|
||||
|
|
|
@ -235,7 +235,7 @@ mod tests {
|
|||
})
|
||||
.clone(),
|
||||
)
|
||||
.pipeline();
|
||||
.into_pipeline();
|
||||
|
||||
assert_eq!(
|
||||
lazy(|cx| srv.poll_ready(cx)).await,
|
||||
|
@ -257,7 +257,7 @@ mod tests {
|
|||
Ok((req, ()))
|
||||
})
|
||||
.clone()
|
||||
.pipeline();
|
||||
.into_pipeline();
|
||||
|
||||
assert_eq!(
|
||||
lazy(|cx| srv.poll_ready(cx)).await,
|
||||
|
|
|
@ -3,9 +3,7 @@ use std::{fmt, future::Future, pin::Pin, task::Context, task::Poll};
|
|||
use crate::ctx::{ServiceCtx, WaitersRef};
|
||||
|
||||
pub type BoxFuture<'a, I, E> = Pin<Box<dyn Future<Output = Result<I, E>> + 'a>>;
|
||||
|
||||
pub struct BoxService<Req, Res, Err>(Box<dyn ServiceObj<Req, Response = Res, Error = Err>>);
|
||||
|
||||
pub struct BoxServiceFactory<Cfg, Req, Res, Err, InitErr>(
|
||||
Box<dyn ServiceFactoryObj<Req, Cfg, Response = Res, Error = Err, InitError = InitErr>>,
|
||||
);
|
||||
|
@ -70,12 +68,10 @@ where
|
|||
type Response = S::Response;
|
||||
type Error = S::Error;
|
||||
|
||||
#[inline]
|
||||
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||
crate::Service::poll_ready(self, cx)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn poll_shutdown(&self, cx: &mut Context<'_>) -> Poll<()> {
|
||||
crate::Service::poll_shutdown(self, cx)
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ use crate::middleware::{ApplyMiddleware, Middleware};
|
|||
use crate::then::{Then, ThenFactory};
|
||||
use crate::{IntoService, IntoServiceFactory, Pipeline, Service, ServiceFactory};
|
||||
|
||||
/// Constructs new pipeline with one service in pipeline chain.
|
||||
/// Constructs new chain with one service.
|
||||
pub fn chain<Svc, Req, F>(service: F) -> ServiceChain<Svc, Req>
|
||||
where
|
||||
Svc: Service<Req>,
|
||||
|
@ -23,7 +23,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
/// Constructs new pipeline factory with one service factory.
|
||||
/// Constructs new chain factory with one service factory.
|
||||
pub fn chain_factory<T, R, C, F>(factory: F) -> ServiceChainFactory<T, R, C>
|
||||
where
|
||||
T: ServiceFactory<R, C>,
|
||||
|
@ -35,7 +35,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
/// Pipeline builder - pipeline allows to compose multiple service into one service.
|
||||
/// Chain builder - chain allows to compose multiple service into one service.
|
||||
pub struct ServiceChain<Svc, Req> {
|
||||
service: Svc,
|
||||
_t: PhantomData<Req>,
|
||||
|
@ -139,7 +139,7 @@ impl<Svc: Service<Req>, Req> ServiceChain<Svc, Req> {
|
|||
}
|
||||
|
||||
/// Create service pipeline
|
||||
pub fn pipeline(self) -> Pipeline<Svc> {
|
||||
pub fn into_pipeline(self) -> Pipeline<Svc> {
|
||||
Pipeline::new(self.service)
|
||||
}
|
||||
}
|
||||
|
@ -239,11 +239,11 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Create `NewService` to chain on a computation for when a call to the
|
||||
/// Create chain factory to chain on a computation for when a call to the
|
||||
/// service finished, passing the result of the call to the next
|
||||
/// service `U`.
|
||||
///
|
||||
/// Note that this function consumes the receiving pipeline and returns a
|
||||
/// Note that this function consumes the receiving factory and returns a
|
||||
/// wrapped version of it.
|
||||
pub fn then<F, U>(self, factory: F) -> ServiceChainFactory<ThenFactory<T, U>, Req, C>
|
||||
where
|
||||
|
@ -279,7 +279,7 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Map this service's error to a different error, returning a new service.
|
||||
/// Map this service's error to a different error.
|
||||
pub fn map_err<F, E>(
|
||||
self,
|
||||
f: F,
|
||||
|
@ -294,7 +294,7 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Map this factory's init error to a different error, returning a new service.
|
||||
/// Map this factory's init error to a different error, returning a new factory.
|
||||
pub fn map_init_err<F, E>(
|
||||
self,
|
||||
f: F,
|
||||
|
|
|
@ -164,7 +164,10 @@ mod tests {
|
|||
#[ntex::test]
|
||||
async fn test_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let srv = chain(Srv1(cnt.clone())).then(Srv2(cnt)).clone().pipeline();
|
||||
let srv = chain(Srv1(cnt.clone()))
|
||||
.then(Srv2(cnt))
|
||||
.clone()
|
||||
.into_pipeline();
|
||||
|
||||
let res = srv.call(Ok("srv1")).await;
|
||||
assert!(res.is_ok());
|
||||
|
|
|
@ -28,7 +28,7 @@ rustls = ["tls_rust"]
|
|||
ntex-bytes = "0.1.21"
|
||||
ntex-io = "1.0.0-b.1"
|
||||
ntex-util = "1.0.0-b.1"
|
||||
ntex-service = "2.0.0-b.0"
|
||||
ntex-service = "2.0.0"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ path = "src/lib.rs"
|
|||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-io = "1.0.0-b.0"
|
||||
ntex-util = "1.0.0-b.0"
|
||||
ntex-io = "1.0.0-b.1"
|
||||
ntex-util = "1.0.0-b.1"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
tokio = { version = "1", default-features = false, features = ["rt", "net", "sync", "signal"] }
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [1.0.0] - 2024-01-09
|
||||
|
||||
* Release
|
||||
|
||||
## [1.0.0-b.1] - 2024-01-xx
|
||||
|
||||
* Remove unnecessary 'static
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-util"
|
||||
version = "1.0.0-b.1"
|
||||
version = "1.0.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Utilities for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -16,8 +16,8 @@ name = "ntex_util"
|
|||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
ntex-rt = "0.4.7"
|
||||
ntex-service = "2.0.0-b.0"
|
||||
ntex-rt = "0.4.11"
|
||||
ntex-service = "2.0.0"
|
||||
bitflags = "2.4"
|
||||
fxhash = "0.2.1"
|
||||
log = "0.4"
|
||||
|
@ -28,7 +28,7 @@ futures-sink = { version = "0.3", default-features = false, features = ["alloc"]
|
|||
pin-project-lite = "0.2.9"
|
||||
|
||||
[dev-dependencies]
|
||||
ntex = { version = "1.0.0-b.0", features = ["tokio"] }
|
||||
ntex = { version = "1.0.0-b.1", features = ["tokio"] }
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-macros = "0.1.3"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
|
|
|
@ -52,7 +52,7 @@ ntex-codec = "0.6.2"
|
|||
ntex-connect = "1.0.0-b.1"
|
||||
ntex-http = "0.1.11"
|
||||
ntex-router = "0.5.2"
|
||||
ntex-service = "2.0.0-b.0"
|
||||
ntex-service = "2.0.0"
|
||||
ntex-macros = "0.1.3"
|
||||
ntex-util = "1.0.0-b.0"
|
||||
ntex-bytes = "0.1.21"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue