[package]
edition = "2024"
rust-version = "1.88"
name = "blazingly-executor"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime-neutral operation executor: extraction, validation, dependency resolution, and typed response projection"
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]
validation = ["dep:blazingly-validation"]
[lib]
name = "blazingly_executor"
path = "src/lib.rs"
[[example]]
name = "multipart_upload_cost"
path = "examples/multipart_upload_cost.rs"
[dependencies.base64]
version = "0.22"
[dependencies.blazingly-core]
version = "0.1.0"
[dependencies.blazingly-di]
version = "0.1.0"
[dependencies.blazingly-json]
version = "0.1.0"
[dependencies.blazingly-validation]
version = "0.1.0"
optional = true
[dependencies.serde]
version = "1.0.229"
features = [
"alloc",
"derive",
"std",
]
default-features = false
[dependencies.serde_path_to_error]
version = "0.1"
[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"