mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-21 16:21:29 +02:00
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
[package]
|
|
name = "komorebi"
|
|
version = "0.1.6"
|
|
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 = "1"
|
|
clap = "3.0.0-beta.5"
|
|
color-eyre = "0.5"
|
|
crossbeam-channel = "0.5"
|
|
crossbeam-utils = "0.8"
|
|
ctrlc = "3"
|
|
dirs = "4"
|
|
getset = "0.1"
|
|
hotwatch = "0.4"
|
|
lazy_static = "1"
|
|
nanoid = "0.4"
|
|
parking_lot = { version = "0.11", features = ["deadlock_detection"] }
|
|
paste = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
strum = { version = "0.21", features = ["derive"] }
|
|
sysinfo = "0.20"
|
|
tracing = "0.1"
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uds_windows = "1"
|
|
which = "4"
|
|
winput = "0.2"
|
|
winvd = "0.0.20"
|
|
miow = "0.3"
|
|
|
|
[dependencies.windows]
|
|
version = "0.24"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Dwm",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Accessibility",
|
|
"Win32_UI_WindowsAndMessaging"
|
|
]
|
|
|
|
[features]
|
|
deadlock_detection = []
|