-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 956 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
32
33
34
35
36
37
38
[package]
name = "wpc"
version = "1.9.4"
description = "WPC is a wallpaper changer for Microsoft Windows and Linux."
authors = ["Jagadeesh Kotra <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.14"
env_logger = "0.9.0"
serde = { version="1.0", features=["derive"] }
serde-xml-rs = "0.5.1"
serde_json = "1.0"
reqwest = { version = "0.11.13", features = ["json"] }
clap = {version = "4.4.7", features = ["derive", "cargo", "color"]}
rand = "0.7"
chrono = "0.4.10"
enquote = "1.0.3"
dirs = "2.0.2"
image = "0.23.12"
notify = "4.0.17"
strum_macros = "0.24.3"
tokio = { version = "1.8.4", features = ["full"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }
winreg = "0.7.0"
[target.'cfg(target_os = "linux")'.dependencies]
gio = "0.15.10"
[profile.release]
lto = true
opt-level = "z"
strip = true