Registry / utility / heapless

heapless

JSON →
library0.9.3rscratesunverified

Static-friendly data structures that don't require dynamic memory allocation.

# Cargo.toml [dependencies] heapless = "0.9.3"
INSTALL
IMPORT
SIG · HEAPLESS
H
heapless
utilityrustv0.9.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Vec
use heapless::Vec;

Creates a fixed-capacity vector and pushes an element.

use heapless::Vec; fn main() { let mut v: Vec<u8, 4> = Vec::new(); v.push(1).unwrap(); assert_eq!(v[0], 1); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.9.3latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
heapless — cargo add heapless · libregistry