ws_auth/
lib.rs

1// #![cfg_attr(feature = "clippy", feature(plugin))]
2// #![cfg_attr(feature = "clippy", plugin(clippy))]
3// #![warn(missing_docs)]
4
5#[macro_use]
6extern crate serde_derive;
7pub mod auth;
8pub mod claims;
9pub mod error;
10pub mod identity;
11
12#[cfg(feature = "oauth2")]
13pub mod oauth2;