dates-le 0.1.0

Find every date and timestamp in a codebase, and the instant each one resolves to
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! dates-le — every date and timestamp in a codebase, and the instant
//! each one resolves to.
//!
//! `extract/` is pure and is where the behaviour lives; `walk` and
//! `scan` are the only modules that touch a filesystem; `cli` and `mcp`
//! are surfaces over the same answers.

pub(crate) mod cli;
pub(crate) mod extract;
pub(crate) mod mcp;
pub(crate) mod scan;
pub(crate) mod walk;

pub use cli::run;