diff options
| author | Leonard Kugis <leonard@kug.is> | 2025-04-12 12:46:52 +0200 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2025-04-12 12:46:52 +0200 |
| commit | 8bf0adac445465f2ecd3121f688171895cd61dd1 (patch) | |
| tree | 25e2cb4a82cdf097e63a62fccfd51dc69d3db20f /calendar/Cargo.toml | |
| parent | 5575ed931b95bb1f4a041c9fc41790ad02911b88 (diff) | |
| download | scripts-8bf0adac445465f2ecd3121f688171895cd61dd1.tar.gz | |
Implemented calendar in Rust
Diffstat (limited to 'calendar/Cargo.toml')
| -rw-r--r-- | calendar/Cargo.toml | 12 |
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 |
