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
10
//! Full-featured API clients for interacting with the USSO backend.
//!
//! - [`sync::UssoClient`] — blocking client
//! - [`async_code::AsyncUssoClient`] — async client
//!
//! Both provide session management (token refresh), user CRUD, profile
//! retrieval, identifier management, and agent authentication.

pub mod async_code;
pub mod sync;