Skip to content

Commit 94cb13f

Browse files
authored
expose qpack module as unstable (#311)
1 parent 84316da commit 94cb13f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

h3/src/lib.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ pub mod frame;
3232
#[allow(missing_docs)]
3333
pub mod proto;
3434
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
35+
#[allow(dead_code, missing_docs)]
36+
pub mod qpack;
37+
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
3538
#[allow(missing_docs)]
3639
pub mod stream;
3740
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
@@ -45,12 +48,13 @@ mod frame;
4548
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
4649
mod proto;
4750
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
51+
#[allow(dead_code)]
52+
mod qpack;
53+
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
4854
mod stream;
4955
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
5056
mod webtransport;
5157

52-
#[allow(dead_code)]
53-
mod qpack;
5458
#[cfg(test)]
5559
mod tests;
5660
#[cfg(test)]

0 commit comments

Comments
 (0)