ncalendar

Reimplementation of the BSD calendar(1) program in Rust

git clone https://git.8pit.net/ncalendar.git

 1[package]
 2name = "ncalendar"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7name = "ncalendar"
 8path = "src/lib/mod.rs"
 9
10[[bin]]
11name = "ncalendar"
12path = "src/main.rs"
13
14[dependencies]
15nom = "7.1.1"
16structopt = "0.3.26"
17time = { version = "0.3.17", features = ["macros", "parsing", "local-offset", "formatting"] }