-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 982 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
[package]
name = "seekr-util"
version = "0.1.1"
edition = "2021"
description = "System search util for linux"
license = "MIT"
repository = "https://github.com/luxluth/seekr"
readme = "README.md"
homepage = "https://github.com/luxluth/seekr"
keywords = ["seekr", "launcher", "spotlight", "search", "gui"]
authors = ["luxluth <delphin.blehoussi93@gmail.com>"]
[dependencies]
exmex = "0.20.3"
gtk = { version = "0.9.5", package = "gtk4", features = ["v4_14"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
dbus = "0.9.7"
freedesktop-desktop-entry = "0.7.5"
fuzzy-matcher = "0.3.7"
async-channel = "2.3.1"
tokio = { version = "1.42.0", features = ["rt", "rt-multi-thread", "sync"] }
fragile = "2.0.0"
ini-roundtrip = "0.2.0"
rust-i18n = "3.1.2"
once_cell = "1.20.2"
gtk4-layer-shell = { version = "0.4.0", optional = true }
[[bin]]
name = "seekr"
path = "src/main.rs"
[features]
default = []
gtk-layer-shell = ["gtk4-layer-shell"]
[profile.release]
lto = true
codegen-units = 1