pingora_web 0.1.8

Minimal routing, middleware, and logging (with request ID) for Pingora-based servers.
Documentation
[package]
name = "pingora_web"
version = "0.1.8"
edition = "2024"
description = "Minimal routing, middleware, and logging (with request ID) for Pingora-based servers."
license = "MIT OR Apache-2.0"
repository = "https://github.com/pingora-web/pingora_web"
homepage = "https://github.com/pingora-web/pingora_web"
documentation = "https://docs.rs/pingora_web"
readme = "README.md"
keywords = ["pingora", "http", "middleware", "routing", "server"]
categories = ["web-programming::http-server"]

[dependencies]
async-trait = "0.1"
futures = "0.3"
matchit = "0.9.1"
tokio = { version = "1", features = ["time", "fs", "io-util"] }
http = "1"
bytes = "1"
tracing = "0.1"
mime_guess = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"

[dependencies.pingora]
version = "0.7.0"

[dependencies.pingora-core]
version = "0.7.0"

[dependencies.pingora-http]
version = "0.7.0"

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }