From a9290798085c278bdb304f7e4bc7d0a020d4e45f Mon Sep 17 00:00:00 2001 From: "xxai.art" Date: Thu, 23 Nov 2023 03:32:19 +0800 Subject: [PATCH] pub mod util I need use SecWebsocketExtensions https://github.com/hyperium/headers/pull/88 , but it not merge, pub util so I can copy the file to my project without merge it into headers , the file need util is public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7d1ddaed..277ffcab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -91,7 +91,7 @@ pub use http::HeaderMap; pub use http::header::{HeaderName, HeaderValue}; #[macro_use] -mod util; +pub mod util; mod common; mod map_ext;