diff options
Diffstat (limited to 'calendar/Cargo.toml')
-rw-r--r-- | calendar/Cargo.toml | 5 |
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" |