mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-23 00:58:37 +02:00
57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[package]
|
|
name = "komorebi"
|
|
version = "0.1.33"
|
|
description = "A tiling window manager for Windows"
|
|
repository = "https://github.com/LGUG2Z/komorebi"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
komorebi-themes = { path = "../komorebi-themes" }
|
|
|
|
bitflags = { version = "2", features = ["serde"] }
|
|
clap = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
crossbeam-utils = { workspace = true }
|
|
ctrlc = { version = "3", features = ["termination"] }
|
|
dirs = { workspace = true }
|
|
dunce = { workspace = true }
|
|
getset = "0.1"
|
|
hex_color = { version = "3", features = ["serde"] }
|
|
hotwatch = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
miow = "0.6"
|
|
nanoid = "0.4"
|
|
net2 = "0.2"
|
|
os_info = "3.8"
|
|
parking_lot = "0.12"
|
|
paste = { workspace = true }
|
|
regex = "1"
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
shadow-rs = { workspace = true }
|
|
strum = { version = "0.26", features = ["derive"] }
|
|
sysinfo = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uds_windows = { workspace = true }
|
|
which = { workspace = true }
|
|
win32-display-data = { workspace = true }
|
|
windows = { workspace = true }
|
|
windows-core = { workspace = true }
|
|
windows-implement = { workspace = true }
|
|
windows-interface = { workspace = true }
|
|
winput = "0.2"
|
|
winreg = "0.53"
|
|
|
|
[build-dependencies]
|
|
shadow-rs = { workspace = true }
|
|
|
|
[features]
|
|
deadlock_detection = ["parking_lot/deadlock_detection"]
|