mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Refactor filter factories (#278)
This commit is contained in:
parent
a13f677df8
commit
174b5d86f0
34 changed files with 271 additions and 657 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [1.0.0-b.1] - 2024-01-xx
|
||||
|
||||
* Remove unnecessary 'static
|
||||
|
||||
## [1.0.0-b.0] - 2024-01-07
|
||||
|
||||
* Use "async fn" in trait for Service definition
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-util"
|
||||
version = "1.0.0-b.0"
|
||||
version = "1.0.0-b.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Utilities for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -53,7 +53,7 @@ impl<R, E, F> fmt::Debug for KeepAlive<R, E, F> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<R, E, F, C: 'static> ServiceFactory<R, C> for KeepAlive<R, E, F>
|
||||
impl<R, E, F, C> ServiceFactory<R, C> for KeepAlive<R, E, F>
|
||||
where
|
||||
F: Fn() -> E + Clone,
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue