blazingly-executor 0.2.2

Runtime-neutral operation executor: extraction, validation, dependency resolution, and typed response projection
Documentation
[package]
name = "blazingly-executor"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Runtime-neutral operation executor: extraction, validation, dependency resolution, and typed response projection"
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords = ["framework", "api", "validation", "executor", "mcp"]
categories.workspace = true
publish.workspace = true

# Without this, docs.rs documents default features only, and every optional
# surface is missing from the rendered page: for the facade that is the
# native server itself. The workspace rustdoc job already builds all
# features under -D warnings, so this asks docs.rs for what CI proves.
[package.metadata.docs.rs]
all-features = true

[features]
validation = ["dep:blazingly-validation"]

[dependencies]
blazingly-validation = { workspace = true, optional = true }
base64.workspace = true
blazingly-core.workspace = true
blazingly-di.workspace = true
blazingly-json.workspace = true
serde = { workspace = true, features = ["std"] }
serde_path_to_error.workspace = true

[dev-dependencies]
# The streaming multipart extractor is pull-based, so its tests have to drive a
# future. Test-only; the crate itself still ships no runtime.
futures-lite.workspace = true

[lints]
workspace = true