Init repo

This commit is contained in:
Martin Traverso
2022-06-28 20:09:39 -03:00
commit e4b91932f3
4 changed files with 171 additions and 0 deletions

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "clima"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"]}
tokio = { version = "1", features = ["full"] }