http-authentication 0.2.0

HTTP Authentication
Documentation
1
2
3
4
5
6
7
8
9
10
pub const NAME_BASIC: &str = "Basic";
pub const NAME_BEARER: &str = "Bearer";
pub const NAME_DIGEST: &str = "Digest";

//
#[cfg(feature = "scheme-basic")]
pub mod basic;

#[cfg(feature = "scheme-bearer")]
pub mod bearer;