#cbor #serde #no-std #rust

macro no-std serde-indexed

Derivation of Serialize and Deserialize that replaces struct keys with numerical indices

6 releases

0.1.1 Jun 19, 2024
0.1.0 Jan 31, 2021
0.0.4 Mar 27, 2020
0.0.2 Jan 12, 2020

#2362 in Encoding

Download history 127/week @ 2024-04-01 52/week @ 2024-04-08 112/week @ 2024-04-15 46/week @ 2024-04-22 25/week @ 2024-04-29 31/week @ 2024-05-06 39/week @ 2024-05-13 38/week @ 2024-05-20 56/week @ 2024-05-27 62/week @ 2024-06-03 28/week @ 2024-06-10 277/week @ 2024-06-17 309/week @ 2024-06-24 96/week @ 2024-07-01 81/week @ 2024-07-08 86/week @ 2024-07-15

581 downloads per month
Used in 6 crates (3 directly)

Apache-2.0 OR MIT

18KB
305 lines

serde-indexed

crates.io Documentation

Derivation of Serialize and Deserialize that replaces struct keys with numerical indices.

Primary use case is to handle CTAP CBOR messages, in particular support for:

Example

#[derive(Clone, Debug, PartialEq, SerializeIndexed, DeserializeIndexed)]
#[serde_indexed(offset = 1)]
pub struct SomeKeys {
    pub number: i32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub option: Option<u8>,
    pub bytes: [u8; 7],
}

This was a nice opportunity to learn proc-macros, I roughly followed serde-repr.

To see some generated code, run cargo expand --test basics.

License

serde-indexed is licensed under either of Apache License, Version 2.0 or MIT License at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~285–740KB
~18K SLoC