forked from svenstaro/wmfocus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 974 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
45
46
[package]
name = "wmfocus"
description = "Visually focus windows by label"
version = "1.0.2"
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 = "2018"
[badges]
travis-ci = { repository = "svenstaro/wmfocus", branch = "master" }
maintenance = { status = "actively-developed" }
[features]
i3 = ["i3ipc"]
[dependencies]
cairo-sys-rs = "0.7"
clap = "2.31"
css-color-parser = "0.1"
font-loader = "0.7"
i3ipc = { version = "0.9", optional = true }
itertools = "0.8"
log = "0.4"
pretty_env_logger = "0.3"
regex = "1.0"
xcb = "0.8"
xkbcommon = "0.3"
[dependencies.cairo-rs]
version = "0.5.0"
features = ["xcb"]
[dependencies.xcb-util]
version = "0.2"
features = ["keysyms"]
[dependencies.x11]
version = "2.18.1"
features = ["xlib"]
[profile.release]
lto = true