[package]
edition = "2021"
name = "opensaml"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SAML 2.0 Service Provider library (bergshamra for XML crypto)."
homepage = "https://github.com/sebasxsala/opensaml-rs"
readme = "README.md"
keywords = [
"saml",
"sso",
"xml",
"authentication",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/sebasxsala/opensaml-rs"
[features]
crypto-bergshamra = ["dep:bergshamra"]
default = ["crypto-bergshamra"]
[lib]
name = "opensaml"
path = "src/lib.rs"
[[example]]
name = "sso"
path = "examples/sso.rs"
[[test]]
name = "binding"
path = "tests/binding.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "extractor_conformance"
path = "tests/extractor_conformance.rs"
[[test]]
name = "flow_conformance"
path = "tests/flow_conformance.rs"
[[test]]
name = "hardening"
path = "tests/hardening.rs"
[[test]]
name = "index_conformance"
path = "tests/index_conformance.rs"
[[test]]
name = "issues_conformance"
path = "tests/issues_conformance.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "xsw"
path = "tests/xsw.rs"
[dependencies.base64]
version = "0.22"
[dependencies.bergshamra]
version = "0.4"
optional = true
[dependencies.flate2]
version = "1"
features = ["rust_backend"]
default-features = false
[dependencies.quick-xml]
version = "0.37"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"std",
"parsing",
]
default-features = false
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
default-features = false
[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"