#protobuf #serialization #macro #field #no-alloc #noproto #oneof

macro no-std noproto-derive

Derive macros for the noproto crate. Do not use this crate directly.

2 unstable releases

0.1.0 Dec 20, 2023
0.0.0 Jun 15, 2023

#297 in #field

Download history 50/week @ 2023-12-20 7/week @ 2023-12-27 1/week @ 2024-01-10 1/week @ 2024-01-17 1/week @ 2024-01-24 5/week @ 2024-02-07 45/week @ 2024-02-14 43/week @ 2024-02-21 55/week @ 2024-02-28 31/week @ 2024-03-06 32/week @ 2024-03-13 16/week @ 2024-03-20 38/week @ 2024-03-27 63/week @ 2024-04-03

161 downloads per month
Used in noproto

MIT/Apache

19KB
430 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

~2MB
~44K SLoC