[package]
edition = "2024"
name = "owlauth-types"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Public Project Auth and Control API types for OwlAuth"
readme = "README.md"
keywords = [
"authentication",
"identity",
"api",
"types",
]
categories = [
"authentication",
"web-programming",
]
license = "BSD-3-Clause"
repository = "https://github.com/owlfoundry/owlauth"
[lib]
name = "owlauth_types"
path = "src/lib.rs"
[[bin]]
name = "export-openapi"
path = "src/bin/export-openapi.rs"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.utoipa]
version = "5.5.0"
[dependencies.zeroize]
version = "1.8.2"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"