From 436214be7c1d380b92e84c7e61e3e395b7d34284 Mon Sep 17 00:00:00 2001 From: Alexey Dubovskoy Date: Tue, 14 Jul 2026 20:40:03 +0100 Subject: [PATCH] chore(deps): bump cooklang-language-server to 0.2.4 0.2.4 stops enabling cooklang's bundled_units feature, which it never used. Before #371 that would have silently changed cook recipe output, because we were relying on the language server to turn bundled_units on for us via feature unification. We now declare it ourselves, so this bump is a no-op for recipe output - snapshots are unchanged. Refs #366 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9fd8bb..a47524d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -740,9 +740,9 @@ dependencies = [ [[package]] name = "cooklang-language-server" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "debf28fcbfd9161a365f488e38460d7890664abfe61e4d4d555087d383760c89" +checksum = "193ebb7121bdd55fc189baebdbcd689fdc638820fc7b826b01fe3e1aca6c77c0" dependencies = [ "anyhow", "cooklang", diff --git a/Cargo.toml b/Cargo.toml index 3c8dded..5c09021 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ cooklang-find = { version = "0.6.1", default-features = false } cooklang-import = { version = "0.9.3", optional = true } cooklang-sync-client = { version = "0.4.11", optional = true } libsqlite3-sys = { version = "0.35", features = ["bundled"], optional = true } -cooklang-language-server = { version = "0.2.3", optional = true } +cooklang-language-server = { version = "0.2.4", optional = true } cooklang-reports = { version = "0.5.1" } directories = "6" fluent = "0.16"