summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 11 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f365cba..09a21fd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,12 +1,15 @@
[package]
-name = "WheatherFetch"
-version = "0.0.1"
+name = "weatherfetch"
+version = "0.1.0"
edition = "2021"
[dependencies]
-termimage = "1.2"
-reqwest = "0.12.15"
-chrono = "0.4"
-serde = "1.0"
-clap = "4.0"
-
+serde = { version = "1.0", features = ["derive"] }
+toml = "0.7"
+clap = { version = "4.4", features = ["derive"] }
+reqwest = { version = "0.11", features = ["json"] }
+tokio = { version = "1.0", features = ["full"] }
+chrono = "0.4"
+dirs = "4.0"
+termimage = "0.4"
+image = "0.24"