mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-29 05:31:55 +02:00
This commit applies 'cargo fix --edition' to safely migrate the project to Edition 2021 of Rust. A rustfmt.toml has also be added to enforce the flattening of use statements when running 'cargo fmt'.
28 lines
792 B
TOML
28 lines
792 B
TOML
[package]
|
|
name = "komorebic"
|
|
version = "0.1.6"
|
|
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]
|
|
bindings = { package = "bindings", path = "../bindings" }
|
|
derive-ahk = { path = "../derive-ahk" }
|
|
komorebi-core = { path = "../komorebi-core" }
|
|
|
|
clap = "3.0.0-beta.4"
|
|
color-eyre = "0.5"
|
|
dirs = "4"
|
|
fs-tail = "0.1"
|
|
heck = "0.3"
|
|
paste = "1"
|
|
powershell_script = "0.2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uds_windows = "1"
|