mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
I was getting really tired of having to switch between display inputs to different platform-specific machines to be able to make and test changes on komorebi for Windows and komorebi for Mac. With this commit, the `flake.nix` provides a Nix devShell and crane build for users to make and validate changes with `cargo check`, `cargo clippy` and `cargo build` with the Windows MSVC toolchain on Linux and macOS.
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.40"
|
|
description = "The command-line interface for Komorebi, a tiling window manager for Windows"
|
|
repository = "https://github.com/LGUG2Z/komorebi"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
komorebi-client = { path = "../komorebi-client", default-features = false }
|
|
|
|
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"] }
|
|
open = "5"
|
|
paste = { workspace = true }
|
|
powershell_script = "1.0"
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
shadow-rs = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
thiserror = "2"
|
|
which = { workspace = true }
|
|
win-msgbox = "0.2"
|
|
windows = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
shadow-rs = { workspace = true }
|
|
|
|
[features]
|
|
default = ["schemars"]
|
|
schemars = ["dep:schemars", "komorebi-client/default"]
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(FALSE)'] }
|