[package]
edition = "2024"
name = "strbuilder"
version = "0.1.0"
authors = ["Illia Diadenchuk <dadencukillia@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance StringBuilder for Rust designed to avoid memory reallocations using cache-aligned chunks."
readme = "README.md"
keywords = [
"string",
"builder",
"allocator",
"performance",
"cache-aligned",
]
categories = [
"data-structures",
"memory-management",
]
license = "Zlib"
repository = "https://github.com/dadencukillia/strbuilder"
[features]
default = []
safe = []
[lib]
name = "strbuilder"
path = "src/lib.rs"
[dependencies]