[package]
edition = "2024"
rust-version = "1.87"
name = "oxstr"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A string type merging Arc<str> and &str
"""
homepage = "https://github.com/oxigraph/oxstr"
documentation = "https://docs.rs/oxstr"
readme = "README.md"
keywords = ["String"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxigraph/oxstr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
serde = ["dep:serde"]
[lib]
name = "oxstr"
path = "src/lib.rs"
[[bench]]
name = "str"
path = "benches/str.rs"
harness = false
[dependencies.serde]
version = "1.0.217"
optional = true
[dev-dependencies.codspeed-criterion-compat]
version = ">=4,<6"