kine 0.1.3

Correct and human-readable time handling for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! All-in-one re-exporter for crates of the kine ecosystem
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]

pub use kine_core::*;

#[cfg(feature = "icu")]
#[cfg_attr(docsrs, doc(cfg(feature = "icu")))]
#[doc(inline)]
pub use kine_icu as icu;