A rust library to add a requestid with the actix-web framework.
Add this to your Cargo.toml:
toml
[dependencies]
actix-web-requestid = "0.2.0"
And this to your crate root:
```rust use actixweb::{web, App, HttpServer, HttpResponse, Error}; use actixweb_requestid::{RequestID, RequestIDService};
async fn main() -> std::io::Result<()> { HttpServer::new( || App::new() .wrap(RequestIDService::new()) .service(web::resource("/").to(|| HttpResponse::Ok()))) .bind("127.0.0.1:59880")? .run() .await } ```
actix-web-requestid is distributed under the terms of both the MIT license and the Apache License (Version 2.0).