1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-01 17:27:18 +02:00

remove actix_http::http module (#2488)

This commit is contained in:
Rob Ede
2021-12-05 14:37:20 +00:00
committed by GitHub
parent 59be0c65c6
commit 2d053b7036
57 changed files with 209 additions and 234 deletions

View File

@@ -1,4 +1,4 @@
use actix_http::http::Method;
use actix_http::Method;
use crate::http::header;

View File

@@ -6,7 +6,7 @@ macro_rules! common_header_test_module {
use ::core::str;
use ::actix_http::{http::Method, test};
use ::actix_http::{Method, test};
use ::mime::*;
use $crate::http::header::{self, *};

View File

@@ -15,7 +15,7 @@ use bytes::{Bytes, BytesMut};
// - header map
// - the few typed headers from actix-http
// - header parsing utils
pub use actix_http::http::header::*;
pub use actix_http::header::*;
mod accept;
mod accept_charset;