scim-server 0.5.3

A comprehensive SCIM 2.0 server library for Rust with multi-tenant support and type-safe operations
Documentation
1
2
3
4
5
6
7
8
9
//! Standard resource provider module.
//!
//! This module contains the implementation of the StandardResourceProvider
//! and related functionality for SCIM resource management with pluggable
//! storage backends.

mod standard;

pub use standard::StandardResourceProvider;