strbuilder 0.1.0

A high-performance StringBuilder for Rust designed to avoid memory reallocations using cache-aligned chunks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "strbuilder"
version = "0.1.0"
edition = "2024"
authors = ["Illia Diadenchuk <dadencukillia@gmail.com>"]
description = "A high-performance StringBuilder for Rust designed to avoid memory reallocations using cache-aligned chunks."
license = "Zlib"
readme = "README.md"
repository = "https://github.com/dadencukillia/strbuilder"
keywords = ["string", "builder", "allocator", "performance", "cache-aligned"]
categories = ["data-structures", "memory-management"]

[features]
default = []
safe = []

[dependencies]