1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-09 05:15:37 +01:00
actix-extras/src/lib.rs

16 lines
520 B
Rust
Raw Normal View History

2018-05-30 16:43:39 +03:00
//! HTTP Authorization support for [actix-web](https://actix.rs) framework.
2018-05-23 15:31:14 +03:00
//!
2018-05-30 16:43:39 +03:00
//! Provides [`Authorization`](./headers/authorization/struct.Authorization.html)
//! and [`WWW-Authenticate`](./headers/www_authenticate/struct.WWWAuthenticate.html) headers,
//! and `actix-web` extractors for an `Authorization` header.
#![cfg_attr(feature = "nightly", feature(test))]
#[cfg(feature = "nightly")] extern crate test;
2018-05-23 15:31:14 +03:00
2018-05-20 12:59:41 +03:00
extern crate actix_web;
2018-05-30 16:43:39 +03:00
extern crate bytes;
2018-05-20 12:59:41 +03:00
extern crate base64;
2018-05-30 16:43:39 +03:00
pub mod headers;
pub mod extractors;