From 5e3a32d5bf2de75bb3cff10d6f7f40684e376240 Mon Sep 17 00:00:00 2001 From: Yadunandan Pillai Date: Mon, 13 Jun 2022 15:43:20 -0400 Subject: [PATCH] Updated to expose parsing logic Signed-off-by: Yadunandan Pillai --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index be42b100e..1bc50e235 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -103,8 +103,14 @@ macro_rules! ready { #[cfg_attr(feature = "unstable", allow(missing_docs))] mod codec; mod error; + +#[cfg(not(feature = "unstable"))] mod hpack; +#[cfg(feature = "unstable")] +#[allow(missing_docs)] +pub mod hpack; + #[cfg(not(feature = "unstable"))] mod proto;