scim-server 0.4.0

A comprehensive SCIM 2.0 server library for Rust with multi-tenant support and type-safe operations
Documentation
//! Unit tests for SCIM server components
//!
//! This module contains unit tests that test individual components in isolation.
//! Unit tests focus on testing specific functions, methods, or small units of code
//! without external dependencies or complex integration scenarios.
//!
//! ## Organization
//!
//! - [`resource`] - Tests for core resource functionality
//! - [`value_objects`] - Tests for value object implementations
//! - [`schema`] - Tests for schema system components

pub mod mcp_integration;
pub mod multi_tenant;
pub mod operation_handler;
pub mod providers;
pub mod resource;
pub mod schema;
pub mod value_objects;