1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-02 18:59:04 +01:00
actix-extras/src/lib.rs

13 lines
320 B
Rust
Raw Normal View History

2018-05-23 15:31:14 +03:00
//! HTTP authorization routines for [actix-web](https://github.com/actix/actix-web) framework.
//!
//! Currently supported schemas:
//! * Basic ([RFC-7617](https://tools.ietf.org/html/rfc7617))
extern crate bytes;
extern crate percent_encoding;
2018-05-20 12:59:41 +03:00
extern crate actix_web;
extern crate base64;
mod errors;
2018-05-23 15:31:14 +03:00
pub mod basic;