tempa 0.1.10

A no_std temporal system for animation and simulation, providing time, duration, time ranges, frame rates, and deterministic frame-index stepping.
Documentation
#![no_std]
#![deny(rustdoc::broken_intra_doc_links)]

#[cfg(feature = "std")]
extern crate std;

mod common;
mod duration;
mod error;
mod example;
mod frame_index;
mod frame_rate;
mod frame_stepper;
mod time;
mod time_range;

pub use self::{
    duration::{Duration, HasDuration},
    error::Error,
    frame_index::FrameIndex,
    frame_rate::FrameRate,
    frame_stepper::FrameStepper,
    time::Time,
    time_range::{HasTimeRange, TimeRange},
};