mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-22 09:29:24 +01:00
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.31"
|
|
description = "The command-line interface for Komorebi, a tiling window manager for Windows"
|
|
categories = ["cli", "tiling-window-manager", "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-client = { path = "../komorebi-client" }
|
|
|
|
chrono = { workspace = true }
|
|
clap = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
dirs = { workspace = true }
|
|
dunce = { workspace = true }
|
|
fs-tail = "0.1"
|
|
lazy_static = { workspace = true }
|
|
miette = { version = "7", features = ["fancy"] }
|
|
paste = { workspace = true }
|
|
powershell_script = "1.0"
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9"
|
|
shadow-rs = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
thiserror = "1"
|
|
uds_windows = { workspace = true }
|
|
which = { workspace = true }
|
|
win32-display-data = { workspace = true }
|
|
windows = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
shadow-rs = { workspace = true }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(FALSE)'] } |