mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 22:12:53 +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.
23 lines
828 B
TOML
23 lines
828 B
TOML
[package]
|
|
name = "komorebi-themes"
|
|
version = "0.1.40"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
base16-egui-themes = { git = "https://github.com/LGUG2Z/base16-egui-themes", rev = "b9e26b31f7a0e7ed239b14e5317e95d1bdc544bd" }
|
|
#catppuccin-egui = { version = "5", default-features = false, features = ["egui32"] }
|
|
catppuccin-egui = { git = "https://github.com/LGUG2Z/catppuccin-egui", rev = "b2f95cbf441d1dd99f3c955ef10dcb84ce23c20a", default-features = false, features = [
|
|
"egui33",
|
|
] }
|
|
eframe = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_variant = "0.1"
|
|
strum = { workspace = true }
|
|
hex_color = { version = "3", features = ["serde"] }
|
|
flavours = { git = "https://github.com/LGUG2Z/flavours", version = "0.7.2" }
|
|
|
|
[features]
|
|
default = ["schemars"]
|
|
schemars = ["dep:schemars"]
|