From c5f359328f38af112d587b6aa8fe2540f27574ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 20 Nov 2024 15:39:02 +0100 Subject: [PATCH 1/2] fix(fmt): formatting of .svelte files --- Cargo.lock | 5 ++--- cli/Cargo.toml | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52bb39ee8309de..a1576ea1163bb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4562,9 +4562,8 @@ dependencies = [ [[package]] name = "markup_fmt" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebae65c91eab3d42231232bf48107f351e5a8d511454927218c53aeb68bbdb6f" +version = "0.15.1" +source = "git+https://github.com/g-plane/markup_fmt.git?rev=5cd836#5cd836c5b301cecdfa3643e78962cce3ccd1294e" dependencies = [ "aho-corasick", "css_dataset", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 16f39e9d481dbf..b566d3bfd27519 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -129,7 +129,8 @@ libz-sys.workspace = true log = { workspace = true, features = ["serde"] } lsp-types.workspace = true malva = "=0.11.0" -markup_fmt = "=0.15.0" +# NOTE(bartlomieju): for now using github URL, because v0.15.2 with important fixes to components hasn't been released yet. +markup_fmt = { git = "https://github.com/g-plane/markup_fmt.git", rev = "5cd836" } memmem.workspace = true monch.workspace = true notify.workspace = true From 74d60c547b215dbc63f111eed11054390b8cb523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 20 Nov 2024 16:27:51 +0100 Subject: [PATCH 2/2] bump to 0.16.0 --- Cargo.lock | 5 +++-- cli/Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a1576ea1163bb1..bc386c9571267c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4562,8 +4562,9 @@ dependencies = [ [[package]] name = "markup_fmt" -version = "0.15.1" -source = "git+https://github.com/g-plane/markup_fmt.git?rev=5cd836#5cd836c5b301cecdfa3643e78962cce3ccd1294e" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f303c36143671ac6c54112eb5aa95649b169dae783fdb6ead2c0e88b408c425c" dependencies = [ "aho-corasick", "css_dataset", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b566d3bfd27519..ae573827b1c229 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -129,8 +129,7 @@ libz-sys.workspace = true log = { workspace = true, features = ["serde"] } lsp-types.workspace = true malva = "=0.11.0" -# NOTE(bartlomieju): for now using github URL, because v0.15.2 with important fixes to components hasn't been released yet. -markup_fmt = { git = "https://github.com/g-plane/markup_fmt.git", rev = "5cd836" } +markup_fmt = "=0.16.0" memmem.workspace = true monch.workspace = true notify.workspace = true