mirror of
https://github.com/actix/actix-web.git
synced 2025-01-05 14:58:44 +00:00
update changelog
This commit is contained in:
parent
42f9e1034b
commit
6c7ac7fc22
2 changed files with 5 additions and 1 deletions
|
@ -4,6 +4,10 @@
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
* Add `Host` filter #287
|
||||||
|
|
||||||
|
* Allow to filter applications
|
||||||
|
|
||||||
* Improved failure interoperability with downcasting #285
|
* Improved failure interoperability with downcasting #285
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ pub struct HttpApplication<S = ()> {
|
||||||
router: Router,
|
router: Router,
|
||||||
inner: Rc<UnsafeCell<Inner<S>>>,
|
inner: Rc<UnsafeCell<Inner<S>>>,
|
||||||
filters: Option<Vec<Box<Predicate<S>>>>,
|
filters: Option<Vec<Box<Predicate<S>>>>,
|
||||||
middlewares: Rc<RefCell<Vec<Box<Middleware<S>>>>>,
|
middlewares: Rc<Vec<Box<Middleware<S>>>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) struct Inner<S> {
|
pub(crate) struct Inner<S> {
|
||||||
|
|
Loading…
Reference in a new issue