packable 0.11.0

A crate for packing and unpacking binary representations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod common;

#[test]
fn packable_array() {
    assert_eq!(
        common::generic_test(&[42u8; 1024]).0.len(),
        1024 * core::mem::size_of::<u8>()
    );
}