1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// SPDX-FileCopyrightText: 2022 Profian Inc. <opensource@profian.com> // SPDX-License-Identifier: Apache-2.0 OR MIT //! Utilities for encoding serde types #![cfg(feature = "serde")] mod bytes; mod json; mod secret; pub use bytes::Bytes; #[cfg(feature = "secret")] pub use secret::Secret; #[cfg(feature = "json")] pub use json::Json;