1
0
Fork 0
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:
Nikolay Kim 2018-06-07 20:07:58 -07:00
parent 42f9e1034b
commit 6c7ac7fc22
2 changed files with 5 additions and 1 deletions

View file

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

View file

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