[package]
edition = "2024"
rust-version = "1.88"
name = "blazingly-native"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Compio HTTP/1 adapter for Blazingly, with optional rustls TLS and an experimental HTTP/2 path"
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"
[features]
default = []
http2 = ["dep:shiguredo_http2"]
tls = [
"compio/ring",
"compio/rustls",
]
[lib]
name = "blazingly_native"
path = "src/lib.rs"
[dependencies.blazingly-core]
version = "0.1.0"
[dependencies.blazingly-executor]
version = "0.1.0"
[dependencies.blazingly-http]
version = "0.1.0"
[dependencies.blazingly-openapi]
version = "0.1.0"
[dependencies.blazingly-wire]
version = "0.1.0"
[dependencies.compio]
version = "0.17.0"
features = [
"io-compat",
"io-uring",
"dispatcher",
"polling",
"runtime",
"signal",
"time",
]
default-features = false
[dependencies.ctrlc]
version = "3.5.0"
features = ["termination"]
[dependencies.futures-lite]
version = "2"
[dependencies.futures-util]
version = "0.3"
[dependencies.httpdate]
version = "1.0.3"
[dependencies.shiguredo_http2]
version = "=2026.1.0-canary.6"
optional = true
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"