mirror of
https://github.com/fafhrd91/actix-web
synced 2025-03-15 12:43:06 +01:00
update changelog
This commit is contained in:
parent
42f9e1034b
commit
6c7ac7fc22
@ -4,6 +4,10 @@
|
||||
|
||||
### Added
|
||||
|
||||
* Add `Host` filter #287
|
||||
|
||||
* Allow to filter applications
|
||||
|
||||
* Improved failure interoperability with downcasting #285
|
||||
|
||||
|
||||
|
@ -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> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user