rusty-gasket 0.1.1

A plugin-based Rust framework for backend HTTP services
1
2
3
4
5
6
7
8
9
10
11
12
//! Built-in authentication backend implementations.
//!
//! Each backend is gated behind a Cargo feature flag so applications
//! only compile the validation logic they actually use.

/// JWT authentication backend (Bearer token validation).
#[cfg(feature = "auth")]
pub mod jwt;

/// API key authentication backend (header or query parameter).
#[cfg(feature = "auth-api-key")]
pub mod api_key;