light-openid 1.1.1

Lightweight OpenID primitives & client
Documentation
//! # Light OpenID
//!
//! Basic implementation of OpenID protocol, with primitives and basic client.
//!
//! See https://gitea.communiquons.org/pierre/oidc-test-client for an example of usage of this library

use crate::errors::OpenIdError;

pub mod client;
pub mod errors;
pub mod primitives;

pub type Res<T = ()> = Result<T, OpenIdError>;

#[cfg(feature = "crypto-wrapper")]
mod time_utils;

#[cfg(feature = "crypto-wrapper")]
pub mod crypto_wrapper;

#[cfg(feature = "crypto-wrapper")]
pub mod basic_state_manager;