summaryrefslogtreecommitdiffstats
path: root/calendar/Cargo.toml
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2025-04-12 12:46:52 +0200
committerLeonard Kugis <leonard@kug.is>2025-04-12 12:46:52 +0200
commit8bf0adac445465f2ecd3121f688171895cd61dd1 (patch)
tree25e2cb4a82cdf097e63a62fccfd51dc69d3db20f /calendar/Cargo.toml
parent5575ed931b95bb1f4a041c9fc41790ad02911b88 (diff)
downloadscripts-8bf0adac445465f2ecd3121f688171895cd61dd1.tar.gz
Implemented calendar in Rust
Diffstat (limited to 'calendar/Cargo.toml')
-rw-r--r--calendar/Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/calendar/Cargo.toml b/calendar/Cargo.toml
new file mode 100644
index 0000000..1ab2d69
--- /dev/null
+++ b/calendar/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "calendar"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+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