#protobuf #serialization #buffer #protocols #no-alloc #experimental #memory

no-std noproto

no-std, no-alloc protocol buffers implementation for embedded systems

2 unstable releases

0.1.0 Dec 20, 2023
0.0.0 Jun 15, 2023

#1922 in Embedded development

Download history 1/week @ 2024-01-08 2/week @ 2024-01-22 32/week @ 2024-02-12 37/week @ 2024-02-19 68/week @ 2024-02-26 17/week @ 2024-03-04 54/week @ 2024-03-11 15/week @ 2024-03-18 18/week @ 2024-03-25 91/week @ 2024-04-01 10/week @ 2024-04-08 29/week @ 2024-04-15

149 downloads per month
Used in embassy-net-esp-hosted

MIT/Apache

25KB
526 lines

noproto

No-std, no-alloc protocol buffers (protobuf) implementation in Rust, for embedded systems. Optimized for binary size and memory usage, not for performance.

Status: very experimental, ☢️ do not use in production yet. In particular, it doesn't handle many protobuf types well (see below).

Features

Implemented:

  • Derive macros.
  • heapless::Vec, heapless::String impls.
  • optional
  • repeated
  • oneof
  • enum

Not implemented (yet?):

  • Support multiple protobuf encodings. Protobuf "types" are more like "type + wire encoding" all in one, so one Rust type can be encoded multiple ways on the wire. noproto currently assumes the Rust type is enough to deduce how it should be encoded on the wire, which is not true.
  • Support more types (see below)
  • Impls for alloc containers (goal is to be no-alloc, but we could still have them optionally).
  • Impls for &[T] for repeated fields (only doable for writing, not reading)
  • Tool to compile .proto files into Rust code.
  • Maps
  • Deprecated field groups.

Type mapping

Protobuf Rust
bool bool
int32 TODO
uint32 u32
sint32 i32
fixed32 TODO
sfixed32 TODO
int64 TODO
uint64 u64
sint64 i64
fixed64 TODO
sfixed64 TODO
float TODO
double TODO
string heapless::String<N>
bytes heapless::Vec<u8, N>

Minimum supported Rust version (MSRV)

noproto is guaranteed to compile on the latest stable Rust version at the time of release. It might compile with older versions but that may change in any new patch release.

License

This work is licensed under either of

at your option.

Dependencies

~445–770KB
~16K SLoC