summaryrefslogtreecommitdiffstats
path: root/calendar/Cargo.toml
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2025-04-12 14:25:56 +0200
committerLeonard Kugis <leonard@kug.is>2025-04-12 14:25:56 +0200
commitb0297b96b52042ed390092faa22b26ef516a259a (patch)
tree00b2f2ebd417218bce05a391091934c3a29ffebe /calendar/Cargo.toml
parentbfc6151397b6a3d240687e6faba06175f5504770 (diff)
downloadscripts-b0297b96b52042ed390092faa22b26ef516a259a.tar.gz
calendar: Using config file
Diffstat (limited to 'calendar/Cargo.toml')
-rw-r--r--calendar/Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/Cargo.toml b/calendar/Cargo.toml
index 1ab2d69..f7e3c8e 100644
--- a/calendar/Cargo.toml
+++ b/calendar/Cargo.toml
@@ -4,9 +4,10 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
-reqwest = { version = "0.11", features = ["blocking", "json"] }
regex = "1.10"
tempfile = "3.8"
-anyhow = "1.0" \ No newline at end of file
+reqwest = { version = "0.11", features = ["blocking", "json"] }
+anyhow = "1.0"