From 7d4aabad2c6d2cc07359b64214ba6e61f42ed80f Mon Sep 17 00:00:00 2001 From: landrigun Date: Thu, 16 Feb 2023 09:05:19 +0000 Subject: [PATCH] set extraction func as not public --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 664e033..ba40f89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http" -version = "0.1.3" +version = "0.1.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/lib.rs b/src/lib.rs index 65f12a7..049852b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,7 @@ mod version; pub use body::HTTPBody; pub use message::JSONMessage; -pub use request::{HTTPRequest, extract_json_value}; +pub use request::HTTPRequest; pub use response::HTTPResponse; pub use start_line::HTTPStartLine; pub use status::{HTTPStatusCode, HTTPStatusLine};