[package]
edition = "2024"
rust-version = "1.88"
name = "blazingly-openapi"
version = "0.2.2"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generates OpenAPI documents and browser UI assets from the Blazingly operation model"
homepage = "https://github.com/sergii-ziborov/blazingly"
readme = "README.md"
keywords = [
"openapi",
"json-schema",
"swagger",
"api",
"schema",
]
categories = [
"web-programming::http-server",
"web-programming",
"asynchronous",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/blazingly"
[package.metadata.docs.rs]
all-features = true
[features]
validation = ["dep:blazingly-validation"]
[lib]
name = "blazingly_openapi"
path = "src/lib.rs"
[dependencies.blazingly-core]
version = "0.2.2"
[dependencies.blazingly-json]
version = "0.1.3"
[dependencies.blazingly-validation]
version = "0.2.2"
optional = true
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"