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