forked from ttytm/wthrr-the-weathercrab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (45 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "wthrr"
version = "1.1.1"
authors = ["Turiiya <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Weather companion for the terminal"
readme = "README.md"
homepage = "https://github.com/tobealive/wthrr-the-weathercrab"
repository = "https://github.com/tobealive/wthrr-the-weathercrab"
keywords = ["cli", "weather", "meteorological", "terminal"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = [
"clock",
"unstable-locales",
] }
clap = { version = "4.3", default-features = false, features = [
"derive",
"std",
"help",
"usage",
"error-context",
"suggestions",
] }
colored = "2.0"
directories = "5.0"
dialoguer = { version = "0.10", default-features = false }
futures = "0.3"
optional_struct = "0.3"
regex = { version = "1.9" }
reqwest = { version = "0.11", features = ["json"] }
ron = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.25"
strum_macros = "0.25"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
scopeguard = "1.1"
[profile.release]
strip = true
[[bin]]
name = "wthrr"
path = "src/main.rs"