forked from j0ru/kickoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (51 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "kickoff"
version = "0.7.0"
authors = ["Folke Gleumes <[email protected]>"]
edition = "2021"
description = "Fast and minimal program launcher"
license = "GPL-3.0-or-later"
homepage = "https://github.com/j0ru/kickoff"
repository = "https://github.com/j0ru/kickoff"
readme = "README.md"
keywords = ["wayland", "launcher", "wlroots"]
[dependencies]
smithay-client-toolkit = "0.15"
fontdue = "0.7"
image = { version = "0.24", default-features = false }
fuzzy-matcher = "0.3"
nix = { version = "0.26", default_features = false, features = ["process"] }
css-color = "0.2"
exec = "0.3"
xdg = "2.5"
toml = "0.7"
serde = { version = "1.0", features = ["derive"] }
hex = "0.4"
smithay-clipboard = "0.6"
log = "0.4"
env_logger = "0.10"
x11-keysymdef = "0.2.0"
fontconfig = "0.6"
notify-rust = "4.8"
clap = { version = "4.2", features = ["derive"] }
csv = "1.2"
futures = "0.3"
[dependencies.tokio]
version = "1.28"
features = [
"fs",
"rt-multi-thread",
"io-util",
"time",
"rt",
"macros",
"io-std",
]
default-features = false
[profile.release]
lto = true
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
[[bench]]
name = "selection"
harness = false