tempoch_core/features/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-only
2// Copyright (C) 2026 Vallés Puig, Ramon
3
4//! Optional or higher-level feature modules layered on top of the core time model.
5
6mod time_instant;
7
8pub use time_instant::TimeInstant;
9
10#[cfg(feature = "serde")]
11mod serde_impl;
12#[cfg(feature = "serde")]
13pub mod tagged;