diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d0ef84..1bc1c40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to eww will be listed here, starting at changes since versio ## Unreleased ### Fixes +- Re-enable some scss features (By: w-lfchen) - Fix and refactor nix flake (By: w-lfchen) - Fix remove items from systray (By: vnva) diff --git a/Cargo.lock b/Cargo.lock index 9a66181..6588ee2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1342,25 +1342,27 @@ dependencies = [ [[package]] name = "grass" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a46def7216d331efa51a6aa796ef777bfdfe9605378382827a553344b7e5eefc" +checksum = "f7a68216437ef68f0738e48d6c7bb9e6e6a92237e001b03d838314b068f33c94" dependencies = [ + "clap", "getrandom", "grass_compiler", ] [[package]] name = "grass_compiler" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f39216c1843182f78541276fec96f88406861f16aa19cc9f8add70f8e67b7577" +checksum = "2d9e3df7f0222ce5184154973d247c591d9aadc28ce7a73c6cd31100c9facff6" dependencies = [ "codemap", "indexmap", "lasso", "once_cell", "phf", + "rand", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 003ee21..98fcd32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ codespan-reporting = "0.11" derive_more = "0.99" extend = "1.2" futures = "0.3.30" -grass = { version = "0.13.1", default-features = false } +grass = "0.13.4" gtk = "0.18.1" insta = "1.7" itertools = "0.13.0" diff --git a/crates/eww/Cargo.toml b/crates/eww/Cargo.toml index fa3837c..4c7a444 100644 --- a/crates/eww/Cargo.toml +++ b/crates/eww/Cargo.toml @@ -35,7 +35,7 @@ codespan-reporting.workspace = true derive_more.workspace = true extend.workspace = true futures.workspace = true -grass = { workspace = true, default-features = false } +grass.workspace = true gtk.workspace = true itertools.workspace = true libc.workspace = true