2 releases

0.1.1 Dec 4, 2024
0.1.0 Feb 17, 2024

#517 in Encoding

Download history 47/week @ 2024-08-26 73/week @ 2024-09-02 54/week @ 2024-09-09 66/week @ 2024-09-16 146/week @ 2024-09-23 149/week @ 2024-09-30 139/week @ 2024-10-07 93/week @ 2024-10-14 95/week @ 2024-10-21 111/week @ 2024-10-28 100/week @ 2024-11-04 114/week @ 2024-11-11 100/week @ 2024-11-18 166/week @ 2024-11-25 362/week @ 2024-12-02 424/week @ 2024-12-09

1,055 downloads per month

MIT/Apache

8KB
108 lines

byte-unit-serde

tests crates.io Documentation MIT/Apache-2 licensed

This crate provides de/serialization helper for byte-unit crate to use in combination with serde's with-annotation. This might be useful because it hides a byte-unit crate as an implementation details and allows use the simple u64 type instead. In other words, by using this crate, your code will not depend on the byte-unit crate.

Example

use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
struct Foo {
    #[serde(with = "byte_unit_serde")]
    max_size: u64,
    /// This module also supports an optional values.
    #[serde(default, with = "byte_unit_serde")]
    min_size: Option<u64>,
}

The idea of this crate is heavily inspired by humantime-serde.

Dependencies

~1–1.7MB
~35K SLoC