[package]
edition = "2024"
rust-version = "1.97.0"
name = "sigma-bounded"
version = "0.2.0"
authors = ["Sigma Tactical Group contributors <https://github.com/sigmatactical-org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bounded Vec, String, and map types abstracting alloc vs heapless"
homepage = "https://sigmatactical.org"
documentation = "https://docs.rs/sigma-bounded"
readme = "README.md"
keywords = [
"no_std",
"embedded",
"heapless",
"alloc",
]
categories = [
"data-structures",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sigmatactical-org/dbc-rs"
resolver = "2"
[features]
alloc = []
default = ["alloc"]
heapless = ["dep:heapless"]
[lib]
name = "sigma_bounded"
path = "src/lib.rs"
[dependencies.heapless]
version = "0.9.3"
optional = true
[lints.clippy]
collapsible_if = "allow"
uninlined_format_args = "allow"