feat: add PIPESIZE constant and re-export in common module

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-25 21:30:28 -03:00
parent 781108f6d3
commit 801445a07c

View File

@@ -1,2 +1,8 @@
pub mod is_binary;
pub mod status;
/// Standard buffer size for I/O operations (8KB)
pub const PIPESIZE: usize = 8192;
// Re-export for easy access
pub use self::PIPESIZE;