usso 0.4.0

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
//! Lightweight session wrappers for basic USSO API access.
//!
//! - [`base_session::BaseUssoSession`] — shared HTTP client and headers
//! - [`sync::UssoSession`] — synchronous session
//! - [`async_code::AsyncUssoSession`] — async session

pub mod async_code;
pub mod base_session;
pub mod sync;