# 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
```toml
[dependencies]
scim-rs = "0.1"
```
## Example
```rust
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.