-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
36 lines (34 loc) · 951 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
[package]
name = "hyprlauncher"
version = "0.2.8"
authors = ["Nyx <[email protected]>", "Adam Perkowski <[email protected]>"]
license = "GPL-2.0"
description = "GUI for launching applications, written in blazingly fast Rust!"
repository = "https://github.com/hyprutils/hyprlauncher.git"
readme = "readme.md"
keywords = ["gui", "hyprland", "wayland", "launcher"]
categories = ["gui"]
edition = "2021"
[dependencies]
gtk4 = "0.9.2"
gtk4-layer-shell = "0.4.0"
once_cell = "1.18"
serde = { version = "1.0", features = ["derive"] }
fuzzy-matcher = "0.3"
dirs = "5.0"
tokio = { version = "1.42", features = ["full", "rt-multi-thread"] }
rayon = "1.8"
shellexpand = "3.1"
ctrlc = "3.4"
notify = "6.1"
freedesktop_entry_parser = "1.3"
rink-core = { version = "0.8.0", features = ["bundle-files"] }
percent-encoding = "2.3.1"
x11rb = "0.13.1"
toml = "0.8"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
opt-level = 3