mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-21 08:11:30 +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'.
16 lines
400 B
TOML
16 lines
400 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"
|
|
strum = { version = "0.21", features = ["derive"] }
|