First commit, CLI to request the current weather from Open Meteo

This commit is contained in:
2023-05-19 00:03:14 +02:00
commit f7a7b85111
5 changed files with 698 additions and 0 deletions

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "open-meteo-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.96"
structopt = "0.3.26"
ureq = {version = "2.6.2", features = ["json"]}