strbuilder 0.2.0

A high-performance StringBuilder for Rust designed to avoid memory reallocations using cache-aligned chunks.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "strbuilder"
version = "0.2.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]