#hex #serde #derive-debug #debugging

stremio-serde-hex

Hexadecimal encoding/decoding with serde

1 unstable release

Uses old Rust 2015

0.1.0 Sep 13, 2022

#1911 in Encoding

Download history 132/week @ 2023-12-14 78/week @ 2023-12-21 149/week @ 2023-12-28 111/week @ 2024-01-04 111/week @ 2024-01-11 157/week @ 2024-01-18 203/week @ 2024-01-25 120/week @ 2024-02-01 124/week @ 2024-02-08 186/week @ 2024-02-15 272/week @ 2024-02-22 145/week @ 2024-02-29 72/week @ 2024-03-07 73/week @ 2024-03-14 85/week @ 2024-03-21 39/week @ 2024-03-28

274 downloads per month
Used in 2 crates

MIT/Apache

55KB
1K SLoC

serde-hex Build Status Crates.io

Rust crate for easy and versatile serialization/deserialization of hexadecimal values.

Overview

The serde-hex crate is built around the SerHex trait, which makes it easy to specify custom hexadecimal serialization/deserialization with serde. Once implemented, the SerHex trait is configured via its generic type parameter (e.g.; SerHex<Compact> for hexadecimal values with no leading zeroes, or SerHex<StrictPfx> for leading zeroes and the 0x prefix). Thanks to Rust's very magical compiler, only the components of the serialization/deserialization functionality that your configuration actually uses get compiled in. The most common way to use SerHex is when deriving the Serialize and Deserialize trait for your types. Here is a simple example using serde_derive and serde_json:


use serde_hex::{SerHex,StrictPfx,CompactPfx};

#[derive(Debug,PartialEq,Eq,Serialize,Deserialize)]
struct Foo {
    #[serde(with = "SerHex::<StrictPfx>")]
    bar: [u8;4],
    #[serde(with = "SerHex::<CompactPfx>")]
    bin: u64
}

fn it_works() {
    let foo = Foo { bar: [0,1,2,3], bin: 16 };
    let ser = serde_json::to_string(&foo).unwrap();
    let exp = r#"{"bar":"0x00010203","bin":"0x10"}"#;
    assert_eq!(ser,exp);
}

SerHex is automatically implemented for all unsigned integer types, and all Strict variants are implemented for arrays of [T;1] through [T;64] (where T: SerHex of course). We skip default impls for arrays of length zero, as well as signed integers & floats, since there isn't any particularly intuitive way to represent these values.

This crate provides a number of helpful macros for implementing SerHex on common patterns. If none of the macros suit your needs, a number of utility functions are also provided to make implementing custom variations as painless as possible.

Note

Check out the widely used hex crate if you are just looking for generic hexadecimal conversion traits. This crate is intended fairly specifically for customizeable serde interop, and the generic traits of the hex crate should be preferred if that isn't what you are looking for.

License

Licensed under either of

at your option.

Contribution

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

~260–510KB
~11K SLoC