stak_time/
lib.rs

1//! Time for Stak Scheme.
2
3#![cfg_attr(all(doc, not(doctest)), feature(doc_cfg))]
4#![no_std]
5
6#[cfg(feature = "std")]
7extern crate std;
8
9mod clock;
10mod primitive_set;
11
12pub use clock::*;
13pub use primitive_set::{Primitive, PrimitiveError, TimePrimitiveSet};