-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
27 lines (24 loc) · 832 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
[package]
name = "hyprkool"
version = "0.7.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/thrombe/hyprkool"
description = "A tool that helps you replicate the feel of kde activities and desktop grid layout in Hyprland"
keywords = [
"cli",
"hyprland",
"kde",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
clap = { version = "4.5.3", features = ["derive"] }
dirs = "5.0.1"
# TODO: unsafe-impl should not be used. hyprkool needs a rewrite T-T
hyprland = { git = "https://github.com/thrombe/hyprland-rs", branch = "v0.7_pin", features = ["unsafe-impl"] }
linicon = "2.3.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["full"] }
toml = "0.8.11"