-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 935 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 = "shikane"
version = "1.0.1"
edition = "2021"
authors = ["Hendrik Wolff <[email protected]>"]
repository = "https://gitlab.com/w0lff/shikane"
description = "dynamic output configuration tool focusing on accuracy and determinism"
license = "MIT"
readme = "README.md"
rust-version = "1.70"
categories = ["command-line-utilities"]
keywords = ["wayland", "wlroots", "sway"]
[dependencies]
calloop = "0.13.0"
calloop-wayland-source = "0.3.0"
clap = { version = "4", features = ["derive"] }
env_logger = "0.10.2"
hopcroft-karp = "0.2.1"
itertools = "0.12.1"
log = "0.4.21"
regex = "1.10.4"
ron = "0.8.1"
serde = { version = "1.0.201", features = ["derive"] }
snafu = "0.7.5"
toml = { version = "0.5.11", features = ["preserve_order"] }
wayland-client = { version = "=0.31.2", features = ["log"] }
wayland-protocols-wlr = { version = "=0.2.0", features = ["client"] }
xdg = "2.5.2"
[dev-dependencies]
rstest = "0.19.0"