diff options
| author | Namilskyy <alive6863@gmail.com> | 2025-03-25 22:20:05 +0300 |
|---|---|---|
| committer | Namilskyy <alive6863@gmail.com> | 2025-03-25 22:20:26 +0300 |
| commit | e687e9bd48ce383894fd499595fc25c2dd8ca024 (patch) | |
| tree | 45fb75296303dabe37f938d8f46e02c707eba485 /Cargo.toml | |
| parent | b581af3a76cba646ec58776fcfcca5821bf56221 (diff) | |
Fixed errors and bugs.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -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" |
