diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-13 18:36:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 23:36:02 +0000 |
commit | 392cca87a80951eef32c96a127d73ebe33a9e117 (patch) | |
tree | 10dacc3de1d4c2eea8ba682a2afd13eb00077e69 | |
parent | 929847c7223db5c1ea2e7eec6d47b09e34a5797d (diff) |
fix(fmt): panic in yaml header with multi-byte characters (#17042)
Closes #17010
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index 22d475777..d5c5ee343 100644 --- a/.dprint.json +++ b/.dprint.json @@ -45,7 +45,7 @@ "plugins": [ "https://plugins.dprint.dev/typescript-0.79.0.wasm", "https://plugins.dprint.dev/json-0.17.0.wasm", - "https://plugins.dprint.dev/markdown-0.15.0.wasm", + "https://plugins.dprint.dev/markdown-0.15.1.wasm", "https://plugins.dprint.dev/toml-0.5.4.wasm", "https://plugins.dprint.dev/exec-0.3.2.json@8efbbb3fcfbdf84142c3c438fbdeaf1637152a020032127c837b2b14e23261c3" ] diff --git a/Cargo.lock b/Cargo.lock index 1efb38285..7a134aeb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1441,9 +1441,9 @@ dependencies = [ [[package]] name = "dprint-plugin-markdown" -version = "0.15.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a56f436938566b1f638411e1f3089257a59a68b344886d75fcad0f397e5acfb" +checksum = "0aec6d8d6d9a3a4c1a260893677d24c8feb03ce5f4ee5f6522c9da5e00e5597d" dependencies = [ "anyhow", "dprint-core", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c6309e3dc..c745c1369 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -63,7 +63,7 @@ console_static_text = "=0.3.3" data-url.workspace = true dissimilar = "=1.0.4" dprint-plugin-json = "=0.17.0" -dprint-plugin-markdown = "=0.15.0" +dprint-plugin-markdown = "=0.15.1" dprint-plugin-typescript = "=0.79.0" encoding_rs.workspace = true env_logger = "=0.9.0" |