1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-18 14:16:47 +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
* Add `Host` filter #287
* Allow to filter applications
* Improved failure interoperability with downcasting #285

View file

@ -23,7 +23,7 @@ pub struct HttpApplication<S = ()> {
router: Router,
inner: Rc<UnsafeCell<Inner<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> {