time_core/lib.rs
1//! Core items for `time`.
2//!
3//! This crate is an implementation detail of `time` and should not be relied upon directly.
4
5#![no_std]
6#![doc(html_favicon_url = "https://avatars0.githubusercontent.com/u/55999857")]
7#![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/55999857")]
8#![doc(test(attr(deny(warnings))))]
9
10pub mod convert;
11pub mod util;