hail_core 0.3.0

a library for implementing a speedrun timer
Documentation
/*
  Copyright 2024 periwinkle

  This Source Code Form is subject to the terms of the Mozilla Public
  License, v. 2.0. If a copy of the MPL was not distributed with this
  file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

pub mod types;

pub mod run;
pub use run::Run;

mod instant;
pub use instant::HailInstant;

mod state;
pub use state::{HailState, HailTimer};
#[cfg(feature = "serde")]
pub use state::{StateDump, TimerDump};

pub mod error;
pub use error::HailError;
pub use error::HailResult as Result;