mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-18 06:50:01 +02:00
This commit ensures that after 3 failures to start komorebi with 'komorebic start', 'komorebi.exe' will be run directly in order to show the detailed error output to the end user.
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.25-dev.0"
|
|
authors = ["Jade Iqbal <jadeiqbal@fastmail.com>"]
|
|
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"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
derive-ahk = { path = "../derive-ahk" }
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
komorebi-client = { path = "../komorebi-client" }
|
|
|
|
clap = { version = "4", features = ["derive", "wrap_help"] }
|
|
color-eyre = { workspace = true }
|
|
dirs = { workspace = true }
|
|
dunce = { workspace = true }
|
|
fs-tail = "0.1"
|
|
heck = "0.5"
|
|
lazy_static = "1"
|
|
miette = { version = "7", features = ["fancy"] }
|
|
paste = "1"
|
|
powershell_script = "1.0"
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9"
|
|
sysinfo = { workspace = true }
|
|
thiserror = "1"
|
|
uds_windows = "1"
|
|
which = "6"
|
|
windows = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|