mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-19 23:31:25 +02:00
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "komorebi"
|
|
version = "0.1.22"
|
|
authors = ["Jade Iqbal <jadeiqbal@fastmail.com>"]
|
|
description = "A tiling window manager for Windows"
|
|
categories = ["tiling-window-manager", "windows"]
|
|
repository = "https://github.com/LGUG2Z/komorebi"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
|
|
bitflags = "2"
|
|
clap = { version = "4", features = ["derive"] }
|
|
color-eyre = { workspace = true }
|
|
crossbeam-channel = "0.5"
|
|
crossbeam-utils = "0.8"
|
|
ctrlc = "3"
|
|
dirs = { workspace = true }
|
|
getset = "0.1"
|
|
hex_color = { version = "3", features = ["serde"] }
|
|
hotwatch = "0.5"
|
|
lazy_static = "1"
|
|
miow = "0.5"
|
|
nanoid = "0.4"
|
|
net2 = "0.2"
|
|
os_info = "3.7"
|
|
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
paste = "1"
|
|
regex = "1"
|
|
schemars = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
strum = { version = "0.26", features = ["derive"] }
|
|
sysinfo = "0.30"
|
|
tracing = "0.1"
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uds_windows = "1"
|
|
which = "6"
|
|
widestring = "1"
|
|
windows = { workspace = true }
|
|
windows-implement = { workspace = true }
|
|
windows-interface = { workspace = true }
|
|
winput = "0.2"
|
|
winreg = "0.52"
|
|
|
|
[features]
|
|
deadlock_detection = []
|