forked from caemor/openweather
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "openweather"
version = "0.1.0"
authors = ["Broderick Carlin <broderick.carlin@gmail.com>"]
description = "A rust crate wrapping openweather's API into a simple easy to use interface"
repository = "https://github.com/BroderickCarlin/openweather"
readme = "README.md"
keywords = ["openweather", "openweathermaps", "weather", "api"]
categories = ["api-bindings", "science"]
license = "MIT"
license-file = "LICENSE-MIT"
edition = "2018"
[lib]
name = "openweather"
path = "src/lib.rs"
[dependencies]
log = "0.4.8"
http_req = {version = "0.5.3", default-features = false, features = ["rust-tls"]}
serde_json = "1.0"
serde = "1.0.101"
serde_derive = "1.0.101"
time = "0.1.42"
url = "2.1.0"
[dev-dependencies]
dotenv = "0.15.0"