1 रिपॉजिटरी
Collections of statically allocated data structures designed for memory-constrained embedded systems.
Distinct from Embedded Rust: Distinct from Embedded Rust: focuses specifically on data structure libraries rather than general bare-metal operating system components.
Explore 1 awesome GitHub repository matching programming languages & runtimes · Embedded Data Structure Libraries. Refine with filters or upvote what's useful.
Heapless is an embedded Rust data structure library that provides statically allocated, fixed-capacity collections for memory-constrained systems. It implements a zero-allocation runtime model where all collection elements are stored inline within their own value structure, completely removing the need for operating system interaction, global allocators, or runtime heap allocation. Capacity is specified at compile time through generic type parameters, ensuring every collection has a fixed upper bound known before execution. The library implements core language traits to provide standard coll
Provides statically allocated, heapless data structures designed for memory-constrained embedded systems.