mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(fmt): panic in yaml header with multi-byte characters (#17042)
Closes #17010
This commit is contained in:
parent
929847c722
commit
392cca87a8
3 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||
]
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue