nt_time/
serde_with.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2023 Shun Sakai
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Differential formats for [Serde].
//!
//! [Serde]: https://serde.rs/

#[cfg(feature = "serde-human-readable")]
pub mod iso_8601;
#[cfg(feature = "serde-human-readable")]
pub mod rfc_2822;
#[cfg(feature = "serde-human-readable")]
pub mod rfc_3339;
pub mod unix_time;