From f96a21f1faf26ede3e61b1eac431f7610c4a643d Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Mon, 19 Aug 2024 14:07:36 +0100 Subject: [PATCH] make Uri in http::header private --- actix-web/src/http/header/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-web/src/http/header/mod.rs b/actix-web/src/http/header/mod.rs index 653c44ce53a..e0e25049dde 100644 --- a/actix-web/src/http/header/mod.rs +++ b/actix-web/src/http/header/mod.rs @@ -14,7 +14,7 @@ use std::fmt; // - the few typed headers from actix-http // - header parsing utils pub use actix_http::header::*; -pub use actix_http::Uri; +use actix_http::Uri; use bytes::{Bytes, BytesMut}; mod accept;