entropy-auth 2026.7.31

Authentication and authorization for Entropy Softworks server and API projects
1
2
3
4
5
6
7
8
9
10
11
//! 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 mod filter;

pub use self::filter::{CompareOp, Filter, FilterValue, ScimFilterError, parse_filter};