-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
41 lines (36 loc) · 974 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
39
40
41
[package]
name = "hyprswitch"
description = "A CLI/GUI that allows switching between windows in Hyprland"
version = "3.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
authors = ["h3rmt"]
documentation = "https://docs.rs/crate/hyprswitch"
repository = "https://github.com/h3rmt/hyprswitch/"
keywords = ["hyprland"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
hyprland = { version = "0.4.0-beta.1" }
tokio = { version = "1.41.0", features = ["sync"] }
log = "0.4.22"
stderrlog = "0.6.0"
anyhow = "1.0.91"
lazy_static = "1.5.0"
notify-rust = "4.11.3"
semver = "1.0.23"
gtk4 = { version = "0.9.2" }
gtk4-layer-shell = { version = "0.4.0" }
rand = "0.8.5"
bincode = { version = "1.3.3" }
serde = { version = "1.0.213", features = ["derive"] }
[dev-dependencies]
random_color = "1.0.0"
svg = "0.18.0"
[profile.release]
strip = "debuginfo"
lto = true
opt-level = "s"
panic = "abort"
codegen-units = 1