restrepo 0.5.12

A collection of components for building restful webservices with actix-web
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Common security related components, mildly preconfigured
mod authentication;
mod authorization;
mod cors;
mod events;

#[doc(inline)]
pub use authentication::*;
#[doc(inline)]
pub use authorization::*;
#[doc(inline)]
pub use cors::*;
#[doc(inline)]
pub use events::UserAccessLogger;