//! SCIM 2.0 provisioning primitives (RFC 7643 / 7644), feature-gated (`scim`).
//!
//! Transport- and storage-free, for reuse by both provisioning directions.
//! This ships the pure, non-trivial piece — the filter-expression parser +
//! evaluator ([`filter`]) — that a SCIM server needs for the `?filter=` query
//! on `GET /scim/v2/{Users,Groups}`. Resource (de)serialization + PATCH →
//! storage mapping stay with the caller, which knows its schema.
pub use ;