Skip to main content

qubit_serde/
lib.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! # Qubit Serde
11//!
12//! Provides reusable serde adapters and helper functions.
13//!
14
15#[path = "serde/mod.rs"]
16mod serde_impl;
17
18/// Reusable serde adapters.
19pub mod serde {
20    pub use super::serde_impl::*;
21}