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_string() {
    assert_eq!(
        common::generic_test(&"yellow submarine".to_owned()).0.len(),
        core::mem::size_of::<u64>() + 16 * core::mem::size_of::<u8>()
    );
}