mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 05:18:44 +00:00
update changes
This commit is contained in:
parent
01b1350dcc
commit
891f857547
2 changed files with 4 additions and 1 deletions
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
* Add `.peer_addr()` #744
|
* Add `.peer_addr()` #744
|
||||||
|
|
||||||
|
* Add `NormalizePath` middleware
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
* Rename `RouterConfig` to `ServiceConfig`
|
* Rename `RouterConfig` to `ServiceConfig`
|
||||||
|
|
|
@ -6,10 +6,11 @@ pub mod cors;
|
||||||
mod defaultheaders;
|
mod defaultheaders;
|
||||||
pub mod errhandlers;
|
pub mod errhandlers;
|
||||||
mod logger;
|
mod logger;
|
||||||
pub mod normalize;
|
mod normalize;
|
||||||
|
|
||||||
pub use self::defaultheaders::DefaultHeaders;
|
pub use self::defaultheaders::DefaultHeaders;
|
||||||
pub use self::logger::Logger;
|
pub use self::logger::Logger;
|
||||||
|
pub use self::normalize::NormalizePath;
|
||||||
|
|
||||||
#[cfg(feature = "secure-cookies")]
|
#[cfg(feature = "secure-cookies")]
|
||||||
pub mod identity;
|
pub mod identity;
|
||||||
|
|
Loading…
Reference in a new issue