-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (29 loc) · 941 Bytes
/
Cargo.toml
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
[package]
name = "weatherkit"
authors = [ "boB Rudis (@hrbrmstr)" ]
description = "Print Apple WeatherKit REST API weather conditions and hourly/daily foreacast to the console."
license = "MIT"
homepage = "https://github.com/hrbrmstr/weatherkit-rust"
repository = "https://github.com/hrbrmstr/weatherkit-rust"
keywords = [ "darksky", "weather", "weatherkit" ]
version = "0.3.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jsonwebtokens = "1"
reqwest = { version = "0.11.11", features = ["blocking", "json"] }
tokio = { version = "1", features = ["full"] }
serde = "1.0.137"
serde_json = "1.0.81"
serde_derive = "1.0.137"
tz-search = "0.1"
format_num = "0.1.0"
pad = "0.1.6"
chrono = "0.4.26"
chrono-tz = "0.8.3"
colored = "2"
clap = { version = "4.3.23", features = ["derive"] }
app_dirs2 = "2.5.0"
pickledb = "0.5.1"
log = "0.4"
simple_logger = "4.2.0"