lox-core 0.1.0-alpha.11

Common data types and utilities for the Lox ecosystem
Documentation
// SPDX-FileCopyrightText: 2023 Andrei Zisu <matzipan@gmail.com>
// SPDX-FileCopyrightText: 2023 Angus Morrison <github@angus-morrison.com>
// SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
// SPDX-FileCopyrightText: 2024 Angus Morrison <github@angus-morrison.com>
// SPDX-FileCopyrightText: 2024 Helge Eichhorn <git@helgeeichhorn.de>
//
// SPDX-License-Identifier: MPL-2.0

//! Time representation: deltas, calendar dates, Julian dates, and time-of-day.

pub mod calendar_dates;
/// Conversions between Lox and `chrono` types.
#[cfg(feature = "chrono")]
pub mod chrono;
pub mod constants;
pub mod deltas;
pub mod julian_dates;
pub mod subsecond;
pub mod time_of_day;