// use actix_web::{http::ContentEncoding, dev::BodyEncoding, HttpResponse}; async fn index_br() -> HttpResponse { HttpResponse::Ok().body("data") } #[actix_web::main] async fn main() -> std::io::Result<()> { use actix_web::{middleware, web, App, HttpServer}; HttpServer::new(|| { App::new() .wrap(middleware::Compress::new(ContentEncoding::Br)) .route("/", web::get().to(index_br)) }) .bind(("127.0.0.1", 8080))? .run() .await } //