-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
38 lines (34 loc) · 883 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 = "dlauncher"
version = "0.1.2"
edition = "2021"
license = "GPL-3.0"
description = "An application launcher for Linux that is based on Ulauncher"
homepage = "https://github.com/diced/dlauncher"
repository = "https://github.com/diced/dlauncher"
documentation = "https://docs.rs/dlauncher"
default-run = "dlauncher"
[[bin]]
name = "dlauncher"
path = "src/dlauncher.rs"
[[bin]]
name = "dlauncher-toggle"
path = "src/dlauncher-toggle.rs"
[dependencies]
gtk = { version = "0.15.5", features = ["v3_22"] }
dbus = "0.9.5"
dbus-crossroads = "0.5.0"
regex = "1.5.5"
libc = "0.2.1"
serde = { version = "1.0.136", features = ["derive"] }
toml = "0.5.9"
serde_json = "1.0.79"
libloading = "0.7.3"
dashmap = { version = "5.3.3", features = ["serde"] }
log = "0.4.17"
env_logger = "0.9.0"
shell-words = "1.1.0"
[profile.release]
strip = true
codegen-units = 1
incremental = true