cgi-service 0.1.0

A Tower service that implements the CGI protocol (RFC 3875)
Documentation

cgi-service

crates.io docs.rs CI license

A Tower service that implements the CGI protocol (RFC 3875).

Usage

use axum::{Router, routing::any_service};
use cgi_service::CgiService;

let app: Router = Router::new().route(
    "/",
    any_service(CgiService::new("/usr/lib/cgi-bin/script")),
);

License

MIT