[package]
edition = "2021"
rust-version = "1.81"
name = "scim-rs"
version = "0.1.0"
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SCIM 2.0 types and helpers for Rust."
homepage = "https://github.com/salasebas/scim-rs"
documentation = "https://docs.rs/scim-rs"
readme = "README.md"
keywords = [
"scim",
"identity",
"provisioning",
"iam",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/salasebas/scim-rs"
[features]
default = ["serde"]
serde = ["dep:serde"]
[lib]
name = "scim_rs"
path = "src/lib.rs"
[[test]]
name = "resource_kind"
path = "tests/resource_kind.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"