Skip to content

Commit 541c718

Browse files
committed
cal-rs finished; there will be no cli
1 parent cb80e04 commit 541c718

File tree

4 files changed

+1
-146
lines changed

4 files changed

+1
-146
lines changed

bin/cal

1.05 MB
Binary file not shown.

cal-rs/Cargo.lock

-142
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cal-rs/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
ansi_term = "0.12.1"
109
chrono = "0.4.38"
11-
clap = "4.5.6"
1210
color-print = "0.3.6"
1311
eyre = "0.6.12"
1412
serde = { version = "1.0.203", features = ["derive"] }

cal-rs/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
use cal_rs::back;
22

3-
fn main() -> eyre::Result<()> {
3+
fn main() -> Result<(), back::CalError> {
44
let x = back::Date::now()?;
55
println!("{x}");
66
Ok(())
77
}
8-

0 commit comments

Comments
 (0)