light_openid/
lib.rs

1//! # Light OpenID
2//!
3//! Basic implementation of OpenID protocol, with primitives and basic client.
4//!
5//! See https://gitea.communiquons.org/pierre/oidc-test-client for an example of usage of this library
6
7pub mod client;
8pub mod primitives;
9
10#[cfg(feature = "crypto-wrapper")]
11mod time_utils;
12
13#[cfg(feature = "crypto-wrapper")]
14pub mod crypto_wrapper;
15
16#[cfg(feature = "crypto-wrapper")]
17pub mod basic_state_manager;