2019-03-01 22:51:32 -08:00
|
|
|
#[cfg(any(feature = "brotli", feature = "flate2"))]
|
|
|
|
mod compress;
|
|
|
|
#[cfg(any(feature = "brotli", feature = "flate2"))]
|
|
|
|
pub use self::compress::Compress;
|
2018-03-07 15:38:58 +08:00
|
|
|
|
2018-04-13 16:02:01 -07:00
|
|
|
mod defaultheaders;
|
2018-04-02 21:43:50 -07:00
|
|
|
pub use self::defaultheaders::DefaultHeaders;
|
2019-03-05 10:08:08 -08:00
|
|
|
|
2019-03-09 20:40:09 -08:00
|
|
|
// #[cfg(feature = "session")]
|
|
|
|
// pub use actix_session as session;
|
2019-03-06 19:19:27 -08:00
|
|
|
|
|
|
|
mod logger;
|
|
|
|
pub use self::logger::Logger;
|
2019-03-09 20:40:09 -08:00
|
|
|
|
|
|
|
#[cfg(feature = "session")]
|
|
|
|
pub mod identity;
|