nt_time/serde_with.rs
1// SPDX-FileCopyrightText: 2023 Shun Sakai
2//
3// SPDX-License-Identifier: Apache-2.0 OR MIT
4
5//! Differential formats for [Serde].
6//!
7//! [Serde]: https://serde.rs/
8
9#[cfg(feature = "serde-human-readable")]
10pub mod iso_8601;
11#[cfg(feature = "serde-human-readable")]
12pub mod rfc_2822;
13#[cfg(feature = "serde-human-readable")]
14pub mod rfc_3339;
15pub mod unix_time;