From 09b460c72e68565cf809f83112241571cd8c4c5f Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 18 May 2024 12:53:41 -0500 Subject: [PATCH] Promote BigBytes from pub(super) to pub(crate) --- actix-http/src/h1/big_bytes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/h1/big_bytes.rs b/actix-http/src/h1/big_bytes.rs index 2025916cf..755b42b99 100644 --- a/actix-http/src/h1/big_bytes.rs +++ b/actix-http/src/h1/big_bytes.rs @@ -4,7 +4,7 @@ use bytes::{Buf, BufMut, Bytes, BytesMut}; const SIXTYFOUR_KB: usize = 1024 * 64; -pub(super) struct BigBytes { +pub(crate) struct BigBytes { buffer: BytesMut, frozen: VecDeque, frozen_len: usize,