scim-rs 0.1.0

SCIM 2.0 types and helpers for Rust.
Documentation
  • Coverage
  • 100%
    9 out of 9 items documented1 out of 4 items with examples
  • Size
  • Source code size: 7.85 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 364.9 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • salasebas

scim-rs

scim-rs is an experimental Rust crate for SCIM 2.0 types and helpers.

The public API is intentionally small while the project structure, release automation, and security posture are being established.

Install

[dependencies]
scim-rs = "0.1"

Example

use scim_rs::{ResourceKind, CORE_USER_SCHEMA};

assert_eq!(ResourceKind::User.schema_urn(), CORE_USER_SCHEMA);
assert_eq!(ResourceKind::Group.endpoint(), "/Groups");

Status

This crate is early and experimental. Do not treat the API as stable until a 1.0 release.