byte-wrapper 0.1.0

Newtype wrappers for hex byte arrays and base64 vectors, with serde and schemars support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) The byte-wrapper Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

#[cfg(feature = "base64")]
mod base64;
#[cfg(all(feature = "schemars08", feature = "base64"))]
mod base64_schemars;
#[cfg(all(feature = "base64", feature = "serde"))]
mod base64_serde;
#[cfg(feature = "hex")]
mod hex;
#[cfg(all(feature = "schemars08", feature = "hex"))]
mod hex_schemars;
#[cfg(all(feature = "hex", feature = "serde"))]
mod hex_serde;
#[cfg(feature = "schemars08")]
mod typify_roundtrip;