summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-12-04 20:48:31 +1300
committerSophie Forrest <git@sophieforrest.com>2024-12-04 20:48:31 +1300
commit3bd5ebb7b8f938ba57a114cd77c0b5c5ad3bf93e (patch)
tree8bbd29ab03e19e584644b7b51356fd09dcac5e13 /Cargo.toml
parent3725fe07e58f459bb7ab9fcbc10775cf4b138ec8 (diff)
feat(cli): use clap for a command line interface HEAD v0.2.0 main
Allows choosing the year and file path.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4d7e00d..d062a39 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,12 @@
 [package]
 name = "vuw_course_scraper"
-version = "0.1.0"
+description = "Program capable of parsing VUWs courses from the registry."
+authors = ["Sophie Forrest <git@sophieforrest.com>"]
+version = "0.2.0"
 edition = "2021"
 
 [dependencies]
+clap = { features = ["derive"], version = "4.5.22" }
 futures-util = "0.3.31"
 nom = "7.1.3"
 reqwest = { default-features = false, features = [
@@ -14,6 +17,7 @@ reqwest = { default-features = false, features = [
 scraper = "0.21.0"
 serde = { version = "1.0.214", features = ["derive"] }
 simd-json = "0.14.2"
+time = "0.3.37"
 tokio = { version = "1.41.1", features = [
 	"macros",
 	"fs",