| Crates.io | cgi-service |
| lib.rs | cgi-service |
| version | 0.2.0 |
| created_at | 2026-01-10 10:39:54.938181+00 |
| updated_at | 2026-01-10 12:10:13.459118+00 |
| description | A Tower service that implements the CGI protocol (RFC 3875) |
| homepage | |
| repository | https://github.com/mbid/rust-cgi-service |
| max_upload_size | |
| id | 2034012 |
| size | 147,073 |
A Tower service that implements the CGI protocol (RFC 3875).
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")),
);
MIT