issuerd-server 0.1.6

HTTP server bootstrap, middleware, TLS and OIDC endpoints for the Issuerd IAM server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: Apache-2.0
// Copyright (C) 2026 Dmitry Andreev. <da@issuerd.org>
//
// Typestate wrappers for the server-side auth lifecycle.

//! Typestate wrappers for server-side auth lifecycle.
//!
//! Provides `TypedPendingAuthData` for cache round-trips and `AuthRequest`
//! for the OIDC authorization request lifecycle.

pub mod auth_request;
pub mod pending_auth;

pub use auth_request::AuthRequest;
pub use pending_auth::{TypedPendingAuthData, TypedPendingAuthDataEnum};