-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
38 lines (36 loc) · 920 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 = "hyprwall"
version = "0.1.6"
authors = ["Nyx <[email protected]>", "Adam Perkowski <[email protected]>"]
license = "GPL-2.0"
description = "GUI for setting wallpapers with multiple backends, written in blazingly fast Rust!"
repository = "https://github.com/nnyyxxxx/hyprpapergui.git"
readme = "readme.md"
keywords = [
"gui",
"hyprland",
"wayland",
"wallpaper",
]
categories = ["gui"]
edition = "2021"
[dependencies]
clap = { version = "4.3", features = ["derive"] }
gtk = { version = "0.9.2", package = "gtk4" }
glib = { version = "0.18.0", features = ["v2_68"] }
gio = "0.18.0"
gdk = "0.18.0"
shellexpand = "3.1.0"
lazy_static = "1.4.0"
parking_lot = "0.12.1"
rayon = "1.7"
num_cpus = "1.15"
rand = "0.8"
crossbeam-channel = "0.5"
tokio = { version = "1.28", features = ["full"] }
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
opt-level = 3