boxen 0.4.0

A Rust library for creating styled terminal boxes around text with performance optimizations
Documentation
1
2
3
4
5
6
7
8
//! Memory management utilities for performance optimization.
//!
//! This module provides memory pooling and buffer reuse mechanisms to reduce
//! allocations during rendering operations.

pub mod pool;

pub use pool::{PooledString, StringPool, with_pooled_string};