[package]
name = "str_array"
authors = ["Alyssa Haroldsen <kupiakos@gmail.com>"]
version = "1.1.0"
edition = "2021"
rust-version = "1.64"
description = "Fixed-size `str` and `CStr` types backed by an array"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/kupiakos/str-array"
categories = ["no-std", "no-std::no-alloc", "data-structures", "rust-patterns"]
keywords = ["str", "fixed", "Sized", "array", "CStr"]
[features]
alloc = []
std = ["alloc"]
default = ["std"]
[build-dependencies]
autocfg = "1"
[lints.rust]
unexpected_cfgs = { level = "deny", check-cfg = [
'cfg(has_core_error)',
'cfg(has_const_mut)',
] }