//! JWT request-context extraction.
//!
//! Provides [`JwtContextExtractor`], which validates bearer tokens and derives
//! a request context, together with the [`JtiRevocationChecker`] it consults to
//! reject revoked token identifiers.
pub use JwtContextExtractor;
pub use JtiRevocationChecker;
pub use JwtUserContext;