14 releases

0.5.1 Mar 4, 2023
0.4.1 Mar 25, 2022
0.3.2 Mar 11, 2021
0.3.1 Dec 28, 2020
0.1.3 Dec 29, 2018

#76 in Encoding

Download history 47273/week @ 2024-01-08 63945/week @ 2024-01-15 65357/week @ 2024-01-22 63040/week @ 2024-01-29 62436/week @ 2024-02-05 69656/week @ 2024-02-12 70657/week @ 2024-02-19 63967/week @ 2024-02-26 62755/week @ 2024-03-04 67451/week @ 2024-03-11 70165/week @ 2024-03-18 58459/week @ 2024-03-25 73995/week @ 2024-04-01 71812/week @ 2024-04-08 66019/week @ 2024-04-15 64899/week @ 2024-04-22

280,426 downloads per month
Used in 730 crates (137 directly)

MIT/Apache

12KB
178 lines

serde-big-array

docs crates.io dependency status

Big array helper for serde. The purpose of this crate is to make (de-)serializing arrays of sizes > 32 easy. This solution is needed until serde adopts const generics support.

Bases on this snippet.

extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
#[macro_use]
extern crate serde_big_array;

use serde_big_array::BigArray;

#[derive(Serialize, Deserialize)]
struct S {
    #[serde(with = "BigArray")]
    arr: [u8; 64],
}

#[test]
fn test() {
    let s = S { arr: [1; 64] };
    let j = serde_json::to_string(&s).unwrap();
    let s_back = serde_json::from_str::<S>(&j).unwrap();
    assert!(&s.arr[..] == &s_back.arr[..]);
}

Important links:

MSRV

The minimum supported Rust version (MSRV) is Rust 1.56.0.

License

This crate is distributed under the terms of both the MIT license and the Apache License (Version 2.0), at your option.

See LICENSE-APACHE and LICENSE-MIT for details.

License of your contributions

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

~110–360KB