-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 946 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
[package]
name = "stslayer"
version = "0.1.0"
authors = ["Serge Matveenko <lig@countzero.co>"]
edition = "2021"
description = "Status Slayer is a configurable implementation of status command for Sway WM using Swaybar Protocol"
# documentation = ""
readme = "README.md"
# homepage = ""
repository = "https://codeberg.org/lig/status-slayer"
license = "MIT"
keywords = ["sway", "swaybar", "statusbar", "config", "toml"]
categories = ["command-line-utilities", "config", "gui"]
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
dirs = "5.0.1"
itertools = "0.13.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
signal-hook = "0.3.17"
tokio = { version = "1.42.0", features = ["full", "macros"] }
toml = "0.8.19"
[dev-dependencies]
assert_cmd = { version = "2.0.16", features = ["color-auto"] }
pretty_assertions = "1.4.1"
regex = "1.11.1"
rstest = "0.23.0"
wait-timeout = "0.2.0"