mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-31 06:23:13 +02:00
- Avoids unnecessary string allocation when tracing paths - Replaces `mut path & path.push()` with `path.join()` - Avoids unncessary cloning of paths where applicable - Use `dunce` crate to remove `UNC` prefix - Improve performance of resolving `~` by avoiding unnecessary string allocations - Resolve `~`, `$Env:USERPROFILE` and `$HOME` consistenly between different code paths - Use `PathBuf` instead of `String` for paths in CLI args I may have missed a couple of places but I think I covered 90% of path handling in the codebase
33 lines
987 B
TOML
33 lines
987 B
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.19"
|
|
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" }
|
|
|
|
clap = { version = "4", features = ["derive", "wrap_help"] }
|
|
fs-tail = "0.1"
|
|
heck = "0.4"
|
|
lazy_static = "1"
|
|
paste = "1"
|
|
powershell_script = "1.0"
|
|
reqwest = { version = "0.11", features = ["blocking"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
sysinfo = "0.29"
|
|
uds_windows = "1"
|
|
which = "5"
|
|
windows = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
dirs = { workspace = true }
|
|
dunce = { workspace = true } |