mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-21 00:01:26 +02:00
65 lines
1.5 KiB
TOML
65 lines
1.5 KiB
TOML
[package]
|
|
name = "komorebi"
|
|
version = "0.1.14"
|
|
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 = { version = "4", features = ["derive"] }
|
|
color-eyre = "0.6"
|
|
crossbeam-channel = "0.5"
|
|
crossbeam-utils = "0.8"
|
|
ctrlc = "3"
|
|
dirs = "4"
|
|
getset = "0.1"
|
|
hotwatch = "0.4"
|
|
lazy_static = "1"
|
|
miow = "0.4"
|
|
nanoid = "0.4"
|
|
net2 = "0.2"
|
|
os_info = "3.4"
|
|
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
paste = "1"
|
|
schemars = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
sysinfo = "0.26"
|
|
tracing = "0.1"
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uds_windows = "1"
|
|
which = "4"
|
|
winput = "0.2"
|
|
winreg = "0.10"
|
|
|
|
[dependencies.windows]
|
|
version = "0.43"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Dwm",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_RemoteDesktop",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Accessibility",
|
|
"Win32_UI_HiDpi",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_Shell_Common",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_SystemServices"
|
|
]
|
|
|
|
[features]
|
|
deadlock_detection = []
|