1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 23:17:42 +02:00

codegen: Minimize futures dependencies

This commit is contained in:
Yuki Okushi
2020-05-18 11:46:37 +09:00
parent fc8e07b947
commit 24372467d9
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,6 @@
//! ```rust
//! use actix_web::HttpResponse;
//! use actix_web_codegen::get;
//! use futures::{future, Future};
//!
//! #[get("/test")]
//! async fn async_test() -> Result<HttpResponse, actix_web::Error> {