mirror of
https://github.com/trussed-dev/serde-indexed.git
synced 2026-03-11 16:30:59 -07:00
main
serde-indexed
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:
skip_serializing_iffor optional keys- configurable index
offset
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.
Languages
Rust
100%