[package]
edition = "2021"
rust-version = "1.85"
name = "opensaml"
version = "0.3.0"
build = false
include = [
"/Cargo.toml",
"/src/**",
"/tests/**",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Maintained compatibility re-export of saml-rs."
homepage = "https://github.com/salasebas/saml-rs"
readme = "README.md"
keywords = [
"saml",
"sso",
"xml",
"authentication",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/salasebas/saml-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
crypto-bergshamra = ["saml-rs/crypto-bergshamra"]
default = ["crypto-bergshamra"]
[lib]
name = "opensaml"
path = "src/lib.rs"
[[test]]
name = "reexport"
path = "tests/reexport.rs"
[dependencies.saml-rs]
version = "0.3.0"
default-features = false
[lints.clippy]
empty_docs = "warn"
expect_used = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_rust_codeblocks = "deny"