ws-auth 0.0.3

A library to help build authentication services and client libraries for web services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// #![cfg_attr(feature = "clippy", feature(plugin))]
// #![cfg_attr(feature = "clippy", plugin(clippy))]
// #![warn(missing_docs)]

#[macro_use]
extern crate serde_derive;
pub mod auth;
pub mod claims;
pub mod error;
pub mod identity;

#[cfg(feature = "oauth2")]
pub mod oauth2;