[package]
edition = "2024"
rust-version = "1.88"
name = "blazingly-http"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adapter-neutral HTTP layer for Blazingly: middleware hooks, request extensions, and OpenAPI serving"
readme = "README.md"
keywords = [
"framework",
"http",
"api",
"openapi",
"mcp",
]
categories = [
"web-programming::http-server",
"web-programming",
"api-bindings",
"asynchronous",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/blazingly"
[lib]
name = "blazingly_http"
path = "src/lib.rs"
[dependencies.blazingly-core]
version = "0.1.0"
[dependencies.blazingly-executor]
version = "0.1.0"
[dependencies.blazingly-json]
version = "0.1.0"
[dependencies.blazingly-openapi]
version = "0.1.0"
[dependencies.serde]
version = "1.0.229"
features = [
"alloc",
"derive",
]
default-features = false
[dev-dependencies.futures-lite]
version = "2"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"