tardis_cli/lib.rs
1//! **TARDIS** -- Time And Relative Date Input Simplifier.
2//!
3//! Library crate exposing the CLI argument types, configuration loader,
4//! core transformation pipeline, natural-language parser, and error types.
5
6#![deny(clippy::unwrap_used, clippy::expect_used)]
7
8pub mod cli;
9pub mod config;
10pub mod core;
11pub mod errors;
12pub mod parser;
13
14pub use errors::{Error, Result};