-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 818 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (20 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "openweathermap"
version = "0.2.4"
authors = ["Patrick Hoffmann <[email protected]>"]
edition = "2018"
description = "easy access current weather data from OpenWeatherMap"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/openweathermap"
homepage = "https://openweathermap.thats-software.com"
keywords = ["weather", "openweathermap" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.3", default-features = false, features = ["blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
http = { version = "0.2.4" }
regex = { version = "1.4.6" }
rand = { version = "0.8.3" }
futures = { version = "0.3.1", features = ["executor"] }