[package]
edition = "2024"
name = "fixedstr"
version = "0.5.11"
authors = ["Chuck Liang"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "strings of constant maximum size that can be copied and stack allocated using const generics"
readme = "README.md"
keywords = [
"string",
"no-std",
]
license = "MIT"
repository = "https://github.com/chuckcscccl/fixedstr/"
[package.metadata.docs.rs]
features = [
"serde",
"pub-tstr",
"circular-str",
"flex-str",
"shared-str",
"std",
]
[features]
circular-str = []
compressed-str = []
default = []
experimental = []
flex-str = []
fstr = ["std"]
no-alloc = []
pub-tstr = ["pub_tstr"]
pub_tstr = []
serde = ["dep:serde"]
shared-str = []
std = []
[lib]
name = "fixedstr"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
optional = true
default-features = false