#protobuf #proto #no-alloc #message

macro no-std femtopb-derive

Derive macros for femtopb traits

11 releases

new 0.4.5 Apr 19, 2024
0.4.4 Apr 18, 2024
0.3.0 Apr 4, 2024
0.2.0 Apr 3, 2024
0.1.4 Apr 3, 2024

#114 in #proto

Download history 485/week @ 2024-03-30 69/week @ 2024-04-06

554 downloads per month
Used in femtopb

Apache-2.0

66KB
1.5K SLoC

femtopb

A tiny footprint, #[no_std], no-alloc Protobuf serialization library. This allows you to communicate using Protobuf on constrained platforms, like bare-metal MCUs with very limited RAM.

Yes, you heard it right: this library lets you serialize and deserialize Protobuf messages without any dynamic memory/heap allocation.

The library takes care of using simple types with limited use of generics when possible, to avoid monomorphization code size explosion. The runtime also consists of many tiny functions so that the ones that aren't used can get optimized away.

There are some limitations, however. Messages must be deserialized from continuous &[u8] slices, so incremental deserialization from other bytes::Buf types or streams/files/sockets/... is not supported. Also, messages borrow their source slice for the duration of their lifetime. Deserialization of repeated fields happens lazily to avoid having to dynamically allocate a Vec-like data structure.

The library does not implement advanced features like Protobuf reflection or well-known types, etc. For that, use the prost crate. It is probably advisable to use prost for applications where it is possible, and only use femtopb on platforms where it is necessary.

Attribution

The API is heavily inspired by the prost crate, which is licensed under the Apache 2.0 license. Some tests and key algorithms have also been copied from that crate. This crate is also licensed under the Apache 2.0 license.

Dependencies

~300–750KB
~18K SLoC