cheetah-string 1.0.0

A lightweight, high-performance string manipulation library optimized for speed-sensitive applications
Documentation
[[bench]]
harness = false
name = "cheetah"
path = "benches/cheetah.rs"

[[bench]]
name = "comprehensive"
path = "benches/comprehensive.rs"

[[bench]]
harness = false
name = "simd"
path = "benches/simd.rs"

[dependencies.bytes]
version = "1.10.0"

[dependencies.serde]
default-features = false
features = ["alloc"]
optional = true
version = "1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[[example]]
name = "char_methods"
path = "examples/char_methods.rs"

[[example]]
name = "comprehensive_patterns"
path = "examples/comprehensive_patterns.rs"

[[example]]
name = "pattern_matching"
path = "examples/pattern_matching.rs"

[[example]]
name = "simd_demo"
path = "examples/simd_demo.rs"

[[example]]
name = "test_empty_pattern"
path = "examples/test_empty_pattern.rs"

[[example]]
name = "test_split_behavior"
path = "examples/test_split_behavior.rs"

[features]
bytes = []
default = ["std"]
serde = ["serde/alloc"]
simd = []
std = []

[lib]
name = "cheetah_string"
path = "src/lib.rs"

[package]
authors = ["mxsm <mxsm@apache.org>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming"]
description = """
A lightweight, high-performance string manipulation library optimized for speed-sensitive applications
"""
edition = "2021"
homepage = "https://github.com/mxsm/cheetah-string"
keywords = ["fast", "fast-string", "bytes", "rust", "rocketmq-rust"]
license = "MIT OR Apache-2.0"
name = "cheetah-string"
readme = "README.md"
repository = "https://github.com/mxsm/cheetah-string"
rust-version = "1.75.0"
version = "1.0.0"

[[test]]
name = "api_extensions"
path = "tests/api_extensions.rs"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "comprehensive_tests"
path = "tests/comprehensive_tests.rs"

[[test]]
name = "patterns"
path = "tests/patterns.rs"

[[test]]
name = "simd"
path = "tests/simd.rs"

[[test]]
name = "split_edge_cases"
path = "tests/split_edge_cases.rs"

[[test]]
name = "sso"
path = "tests/sso.rs"