2 repository-uri
Serialization implementations designed to operate in environments without a standard library.
Distinct from No-Std Environment Adapters: Focuses on providing serialization logic in no-std environments, rather than general environment adaptation.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · No-Std Serialization Libraries. Refine with filters or upvote what's useful.
Prost is a Protocol Buffers implementation for Rust that functions as a binary serialization framework and code generator. It translates schema definitions into idiomatic Rust structs and enums, providing the logic necessary to encode and decode structured data into the Protocol Buffers binary format. The project distinguishes itself through a no-std implementation, allowing it to operate in embedded or kernel environments that lack a standard library. It also serves as a schema introspector by emitting file descriptor sets, which enables the programmatic analysis of original schema definitio
Offers a serialization implementation compatible with embedded or kernel environments that lack the Rust standard library.
Embedded-hal is a hardware abstraction layer for embedded microcontrollers that defines common traits allowing peripheral drivers to remain entirely independent of specific hardware platforms. The library provides platform-agnostic interfaces that decouple driver logic from microcontroller architectures, utilizing zero-cost trait abstractions that compile down to direct hardware register manipulations without runtime overhead or memory allocation. The project features asynchronous execution support and synchronous-to-asynchronous adaptation, enabling non-blocking peripheral operations and coo
Provides custom input and output traits tailored for bare-metal and resource-constrained environments.