huskarl-core 0.1.0

Base library for huskarl (OAuth2 client) ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `OAuth2` and OIDC tokens.

mod access_token;
mod refresh_token;

pub mod id_token;
pub mod validator;

pub use access_token::AccessToken;
pub use id_token::IdToken;
pub use refresh_token::RefreshToken;