#traits #decoding #encdec

no-std encdec-base

encdec simple encoder/decoder base types and traits

15 releases (8 breaking)

0.10.0 Dec 23, 2024
0.9.0 May 10, 2023
0.8.3 Jan 15, 2023
0.8.2 Nov 27, 2022

#981 in Embedded development

Download history 745/week @ 2024-12-04 626/week @ 2024-12-11 465/week @ 2024-12-18 266/week @ 2024-12-25 230/week @ 2025-01-01 453/week @ 2025-01-08 430/week @ 2025-01-15 228/week @ 2025-01-22 279/week @ 2025-01-29 501/week @ 2025-02-05 661/week @ 2025-02-12 320/week @ 2025-02-19 433/week @ 2025-02-26 653/week @ 2025-03-05 973/week @ 2025-03-12 428/week @ 2025-03-19

2,546 downloads per month
Used in 13 crates (2 directly)

MPL-2.0 license

25KB
582 lines

encdec

This crate provides common (and no_std compatible) Encode and Decode traits for describing binary encode/decode-able objects in embedded contexts, as well as derive macros to automagically implement these over objects, and basic (at this time little-endian only) implementations for primitive types.

This is intended for use where you need to binary encode objects to suit a particular protocol or specification, because who hasn't had enough of creating per-project encoding traits, and for everything else there are neater solutions like prost for protobufs or serde and postcard if all consumers are using rust.

Status

GitHub tag Build Status Crates.io Docs.rs


lib.rs:

encdec base traits

Dependencies

~0.6–0.8MB
~17K SLoC