mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-30 06:02:06 +02:00
This commit adds support for loading custom layouts from yaml files, and also moves the custom layout loading and validating logic into the komorebi-core crate. re #50
17 lines
419 B
TOML
17 lines
419 B
TOML
[package]
|
|
name = "komorebi-core"
|
|
version = "0.1.6"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bindings = { package = "bindings", path = "../bindings" }
|
|
|
|
clap = "3.0.0-beta.4"
|
|
color-eyre = "0.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.8"
|
|
strum = { version = "0.21", features = ["derive"] }
|