-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (54 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
61 lines (54 loc) · 1.34 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "hyprKCS"
version = "1.25.6"
edition = "2021"
license = "GPL-3.0"
description = "A fast, lightweight, and graphical keybind manager for Hyprland"
repository = "https://github.com/kosa12/hyprKCS"
homepage = "https://github.com/kosa12/hyprKCS"
readme = "README.md"
keywords = ["hyprland", "keybinds", "manager", "gui", "gtk4"]
categories = ["gui", "os::linux-apis", "accessibility", "config"]
exclude = [
"assets/*",
"mine/*",
"tests/*",
".wiki_tmp/*",
".github/*",
]
[dependencies]
gtk4 = { version = "0.10.3", features = ["v4_12"] }
libadwaita = "0.8.1"
anyhow = { version = "1.0.100", default-features = false }
dirs = "6.0.0"
gtk4-layer-shell = "0.7.1"
fuzzy-matcher = "0.3.7"
libc = { version = "0.2", default-features = false }
chrono = { version = "0.4.43", default-features = false, features = ["clock"] }
similar = "2.7.0"
notify = { version = "8.2.0", default-features = false }
glob = "0.3.3"
xkbcommon = { version = "0.8.0", default-features = false }
[[bin]]
name = "hyprkcs"
path = "src/main.rs"
[profile.dev]
opt-level = 0
debug = true
incremental = true
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = "s"
lto = "thin"
codegen-units = 1
strip = true
panic = "abort"
[profile.size]
inherits = "release"
opt-level = "z"
lto = "fat"
[profile.perf]
inherits = "release"
opt-level = 3
lto = "fat"