p2panda-rs 0.9.0

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Commonly used functions for serialization and deserialization of values.
#[cfg(any(feature = "test-utils", test))]
mod cbor;
mod hex_str;
mod u64_str;

#[cfg(any(feature = "test-utils", test))]
pub use cbor::{deserialize_into, serialize_from, serialize_value};
#[cfg(any(feature = "test-utils", test))]
pub use hex_str::hex_string_to_bytes;
pub use hex_str::{deserialize_hex, serialize_hex};
pub use u64_str::StringOrU64;