From c8cc5f390a7deb41c37272950aab9c0ebff02574 Mon Sep 17 00:00:00 2001 From: Eldred Habert Date: Fri, 29 Sep 2023 08:49:06 +0200 Subject: [PATCH] Update `grass` to 0.13 (#2321) This allows benefitting from some bugfixes (potentially breaking but better compatibility with the reference Sass impl) --- Cargo.lock | 8 ++++---- components/libs/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e78be0f5c..f15935235 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1277,18 +1277,18 @@ dependencies = [ [[package]] name = "grass" -version = "0.12.4" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85cc4b64880a2264a41f9eab431780e72a68a6c88b9bddef361ba638812d572e" +checksum = "7746cd9bf09f9bb7d98638774a70642000356f543898d9a352cd043f82744528" dependencies = [ "grass_compiler", ] [[package]] name = "grass_compiler" -version = "0.12.4" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e4feeef87d958eebd4d55431040768b93a5b088202198e0b203adc3c1d468c6" +checksum = "187adfc0b34289c7f8f3819453ce9da3177c3d73f40ac74bb17faba578813d45" dependencies = [ "codemap", "indexmap 1.9.3", diff --git a/components/libs/Cargo.toml b/components/libs/Cargo.toml index 2864a5c43..12f3312e5 100644 --- a/components/libs/Cargo.toml +++ b/components/libs/Cargo.toml @@ -27,7 +27,7 @@ rayon = "1" regex = "1" relative-path = "1" reqwest = { version = "0.11", default-features = false, features = ["blocking"] } -grass = {version = "0.12.1", default-features = false, features = ["random"]} +grass = {version = "0.13", default-features = false, features = ["random"]} serde_json = "1" serde_yaml = "0.9" sha2 = "0.10"