faststr 0.2.19

Faststr is a string library that reduces the cost of clone.
Documentation
[[bench]]
harness = false
name = "faststr"
[dependencies.bytes]
version = "1"

[dependencies.itoa]
optional = true
version = "1"

[dependencies.redis]
default_features = false
optional = true
version = "0.25"

[dependencies.serde]
default_features = false
optional = true
version = "1"

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

[dev-dependencies.static_assertions]
version = "1"

[features]
default = ["std"]
redis = ["dep:redis", "itoa"]
redis-unsafe = ["redis"]
serde = ["dep:serde"]
serde-unsafe = ["serde"]
std = ["serde/std"]

[package]
authors = ["Volo Team <volo@cloudwego.io>"]
description = "Faststr is a string library that reduces the cost of clone."
edition = "2021"
keywords = ["string", "str", "volo"]
license = "MIT OR Apache-2.0"
name = "faststr"
readme = "README.md"
repository = "https://github.com/volo-rs/faststr"
version = "0.2.19"
[profile.bench]
debug = 2
lto = true
opt-level = 3