[package]
edition = "2024"
name = "embed-constvec"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inline fixed capacity vec/array"
homepage = "https://github.com/NaturalIO/embed-collections-rs"
readme = "README.md"
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "embed_constvec"
path = "src/lib.rs"
[dependencies]
[dev-dependencies]
[lints.clippy]
collapsible_else_if = "allow"
collapsible_match = "allow"
len_without_is_empty = "allow"
mut_from_ref = "allow"
needless_range_loop = "allow"
new_ret_no_self = "allow"
new_without_default = "allow"
result_unit_err = "allow"
transmute_ptr_to_ref = "allow"
type_complexity = "allow"