mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-07-08 05:55:09 +02:00
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[package]
|
|
name = "komorebi"
|
|
version = "0.1.19"
|
|
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 = "0.6"
|
|
crossbeam-channel = "0.5"
|
|
crossbeam-utils = "0.8"
|
|
ctrlc = "3"
|
|
dirs = "5"
|
|
getset = "0.1"
|
|
hotwatch = "0.4"
|
|
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 = "1"
|
|
strum = { version = "0.25", features = ["derive"] }
|
|
sysinfo = "0.29"
|
|
tracing = "0.1"
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uds_windows = "1"
|
|
which = "5"
|
|
winput = "0.2"
|
|
winreg = "0.51"
|
|
windows-interface = { workspace = true }
|
|
windows-implement = { workspace = true }
|
|
windows = { workspace = true }
|
|
|
|
[features]
|
|
deadlock_detection = []
|