-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
32 lines (29 loc) · 850 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
[package]
name = "wmfocus"
description = "Visually focus windows by label"
version = "1.5.0"
repository = "https://github.com/svenstaro/wmfocus"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
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-rs = { version = "0.20", features = ["xcb"] }
css-color-parser = "0.1"
font-loader = "0.11"
i3ipc = { version = "0.10", optional = true }
itertools = "0.13"
log = "0.4"
pretty_env_logger = "0.5"
regex = "1.10"
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated"] }
anyhow = "1"
x11rb = { version = "0.13", features = ["allow-unsafe-code"] }
xkeysym = "0.2.0"