huskarl 0.1.0

A modern OAuth2 client library.
Documentation
//! Implements the OAuth 2.0 Authorization Code Grant (RFC 6749 ยง4.1).

mod error;
mod flow;
mod grant;
mod jar;
#[cfg(all(
    feature = "authorization-flow-loopback",
    not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))
))]
mod loopback;
mod par;
mod types;

pub mod pkce;

pub use error::{CompleteError, StartError};
pub use grant::{
    AuthorizationCodeGrant, AuthorizationCodeGrantBuilder, AuthorizationCodeGrantParameters,
};
pub use jar::{Jar, NoJar};
#[cfg(all(
    feature = "authorization-flow-loopback",
    not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))
))]
pub use loopback::{
    CallbackRenderer, CallbackResponse, ErrorContext, LoopbackError, SuccessContext, bind_loopback,
};
pub use types::{CompleteInput, PendingState, StartInput, StartOutput};