usso 0.4.1

The usso provides a universal single sign-on (SSO) integration for microservices, making it easy to add secure, scalable authentication across different frameworks. This client simplifies the process of connecting any microservice to the USSO service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Framework integrations for web frameworks.
//!
//! # Feature flags
//!
//! Each integration is gated behind a Cargo feature:
//!
//! | Feature | Module | Description |
//! |---------|--------|-------------|
//! | `axum` | [`axum`] | `FromRequestParts` extractors (`AuthenticatedUser`, `OptionalUser`) |

#[cfg(feature = "axum")]
pub mod axum;