[package]
edition = "2024"
rust-version = "1.88.0"
name = "hadris-fixed"
version = "2.0.0"
authors = ["hxyulin"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fixed-capacity byte and text types for no-std applications"
readme = "README.md"
keywords = [
"fixed-capacity",
"string",
"no-std",
"utf16",
]
categories = [
"no-std",
"data-structures",
"encoding",
]
license = "MIT"
repository = "https://github.com/hxyulin/hadris"
[features]
alloc = []
bytemuck = ["dep:bytemuck"]
default = []
[lib]
name = "hadris_fixed"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1.22.0"
features = [
"derive",
"min_const_generics",
]
optional = true
default-features = false