[package]
name = "cgi-service"
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "A Tower service that implements the CGI protocol (RFC 3875)"
repository = "https://github.com/mbid/rust-cgi-service"
keywords = ["cgi", "tower", "http", "web"]
categories = ["web-programming::http-server"]
[dependencies]
http = ">= 0"
http-body = ">= 0"
http-body-util = ">= 0"
bytes = ">= 0"
tower-service = ">= 0"
tokio = { version = ">= 0", features = ["process", "io-util", "rt", "macros", "rt-multi-thread", "sync", "time", "net"] }
thiserror = ">= 0"
pin-project-lite = ">= 0"
[dev-dependencies]
tower = { version = ">= 0", features = ["util"] }
test-binary = ">= 0"
axum = ">= 0"
reqwest = ">= 0"