Technical test for a job interview.
1[package]
2name = "weather-rust-service"
3version = "0.1.0"
4authors = ["vylion <volfaria@gmail.com>"]
5edition = "2018"
6
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9[dependencies]
10serde_json = "1.0.57"
11# serde = { version = "1.0", features = ["derive"] }
12reqwest = { version="0.10.8", features=["json", "blocking"] }
13tokio = { version="0.2.22", features=["full"] }
14rocket = "0.4.5"