1
2
3
4
5
6
7
8
9
10
//! actix-toolbox enhances the functionality of actix-web by providing middlewares
//! or other components that are frequently used together with actix-web.
//!
//! This also includes an ORM. [rorm](https://github.com/myOmikron/rorm) is used for this
#![warn(missing_docs)]

/// Provides logging functionality e.g. sets up a configured logger
pub mod logging;
/// Provides a variety of different middlewares
pub mod tb_middleware;