tardis-cli 0.2.0

TARDIS - Translates natural language dates into machine-readable formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! **TARDIS** -- Time And Relative Date Input Simplifier.
//!
//! Library crate exposing the CLI argument types, configuration loader,
//! core transformation pipeline, natural-language parser, and error types.

#![deny(clippy::unwrap_used, clippy::expect_used)]

pub mod cli;
pub mod config;
pub mod core;
pub mod errors;
pub mod parser;

pub use errors::{Error, Result};