forked from svenstaro/wmfocus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 934 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
40
41
42
43
44
[package]
name = "wmfocus"
description = "Visually focus windows by label"
version = "1.3.0"
repository = "https://github.com/svenstaro/wmfocus"
authors = ["Sven-Hendrik Haase <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["wm", "window", "manager", "i3"]
categories = ["command-line-utilities", "command-line-interface"]
edition = "2021"
[profile.release]
lto = true
codegen-units = 1
[features]
i3 = ["i3ipc"]
[dependencies]
cairo-sys-rs = "0.14"
css-color-parser = "0.1"
font-loader = "0.11"
i3ipc = { version = "0.10", optional = true }
itertools = "0.10"
log = "0.4"
pretty_env_logger = "0.4"
regex = "1.5"
clap = { version = "3.0.5", features = ["derive", "wrap_help"] }
xcb = "0.10"
xkbcommon = "0.4"
anyhow = "1"
[dependencies.cairo-rs]
version = "0.14"
features = ["xcb"]
[dependencies.xcb-util]
version = "0.4"
features = ["keysyms"]
[dependencies.x11]
version = "2.19.1"
features = ["xlib"]