Skip to content

Commit 59d3274

Browse files
committed
Allow unused imports on glob import for headers
1 parent 012f015 commit 59d3274

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/headers/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ mod ip;
44
mod location;
55

66
pub use self::auth::*;
7+
#[allow(unused_imports)]
78
pub use self::cookie::*;
89
pub use self::cookie::{Cookie, SetCookie}; // Needed to de-conflict glob import from headers;
910
pub use self::ip::*;
1011
pub use self::location::Location; // Needed to de-conflict glob import from headers;
12+
#[allow(unused_imports)]
1113
pub use self::location::*;
1214
pub use headers::*;
1315

0 commit comments

Comments
 (0)