auths_jwt/lib.rs
1//! Shared JWT claim types for the Auths identity system.
2//!
3//! This crate provides the data types used in Auths-issued JWTs,
4//! shared between the OIDC bridge (token issuer) and MCP server (token consumer).
5
6mod claims;
7
8pub use claims::{ActorClaim, IdpBindingClaim, OidcClaims, WitnessQuorumClaim};