-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (32 loc) · 820 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
[package]
name = "hyprdim"
description = "Automatically dim windows in Hyprland when switching between them."
version = "3.0.0"
authors = ["Copyright (C) 2023-2024 Donovan Glover <https://donovan.is/>"]
repository = "https://github.com/donovanglover/hyprdim"
license = "GPL-3.0-or-later"
edition = "2021"
[dependencies]
anyhow = "1.0.89"
semver = "1.0.23"
single-instance = "0.3.3"
[dependencies.clap]
version = "4.5.4"
features = ["derive"]
[dependencies.ctrlc]
version = "3.4.4"
features = ["termination"]
[dependencies.hyprland]
version = "0.4.0-alpha.3"
features = ["silent"]
[build-dependencies]
clap_complete = "4.5.36"
clap_mangen = "0.2.20"
[build-dependencies.clap]
version = "4.5.4"
features = ["derive"]
[dev-dependencies]
assert_cmd = "2.0.14"
rustympkglib = "0.1.1"
serde = "1.0.214"
toml = "0.8.12"