huskarl 0.4.0

A modern OAuth2 client library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `OAuth2` grant type implementations.
//!
//! Each grant type (e.g. authorization code, client credentials) is built on
//! top of the [`core`] module, which provides the shared exchange logic,
//! form serialization, and token response handling.

pub mod authorization_code;
pub mod client_credentials;
pub mod core;
pub mod device_authorization;
pub mod refresh;
pub mod token_exchange;