This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new a7258381e chore(core): Fix BufferStream not exported (#5730)
a7258381e is described below
commit a7258381e8b12f64fe182e270cbc05c4f0d9ff9c
Author: Xuanwo <[email protected]>
AuthorDate: Mon Mar 10 22:32:09 2025 +0800
chore(core): Fix BufferStream not exported (#5730)
Signed-off-by: Xuanwo <[email protected]>
---
core/src/types/read/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/types/read/mod.rs b/core/src/types/read/mod.rs
index 5995d6ffa..952d77200 100644
--- a/core/src/types/read/mod.rs
+++ b/core/src/types/read/mod.rs
@@ -20,7 +20,7 @@ mod reader;
pub use reader::Reader;
mod buffer_stream;
-pub(crate) use buffer_stream::BufferStream;
+pub use buffer_stream::BufferStream;
mod futures_async_reader;
pub use futures_async_reader::FuturesAsyncReader;