[package]
edition = "2024"
name = "ref_str"
version = "0.1.5"
authors = ["Shao G. <shaogme@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compressed borrowed-or-shared string types for no_std Rust."
homepage = "https://github.com/shaogme/ref_str"
documentation = "https://docs.rs/ref_str"
readme = "README.md"
keywords = [
"no_std",
"string",
"arc",
"rc",
"compression",
]
categories = [
"no-std",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/shaogme/ref_str"
[features]
arbitrary = ["dep:arbitrary"]
serde = ["dep:serde"]
std = ["serde?/std"]
[lib]
name = "ref_str"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.arbitrary]
version = "1"
features = ["derive"]
optional = true
default-features = false
[dependencies.serde]
version = "1"
features = ["alloc"]
optional = true
default-features = false
[dev-dependencies.serde_test]
version = "1"