1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

fix(fmt): reduce likelihood of deno fmt panic for file with multi-byte chars (#12623)

This commit is contained in:
David Sherret 2021-11-02 09:42:53 -04:00 committed by GitHub
parent 0ec151b8cb
commit 70336912b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

16
Cargo.lock generated
View file

@ -1097,9 +1097,9 @@ dependencies = [
[[package]]
name = "dprint-core"
version = "0.47.0"
version = "0.47.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75ed0f351c65487deac1ad113edffa75492209dc538e4f85c8d3362088176f3c"
checksum = "6400fcb8f2d6d4a231d2fc374edd1cf0e3713439e781a680b4b4f2afe2d31c7e"
dependencies = [
"bumpalo",
"rustc-hash",
@ -1108,9 +1108,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-json"
version = "0.13.1"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7e5184c59b6863c21dfd6f8491f895c7f935c41e62ce6464eea57fcb5cb9e60"
checksum = "7aba7fe282566c4f217295b19d69ddaee7a4e179a6ea63f28efc7cc7b9fd766c"
dependencies = [
"dprint-core",
"jsonc-parser",
@ -1119,9 +1119,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-markdown"
version = "0.11.1"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d76c5b041062f73b843fd8d4b2adf48aaaf1e0613bbdbb9b42c5b8cf8d586e"
checksum = "438806cf4483652c45f81d05666fd66906f215aa3347cfe8bd0a4f640cc41442"
dependencies = [
"dprint-core",
"pulldown-cmark",
@ -1131,9 +1131,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-typescript"
version = "0.59.0"
version = "0.59.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a72ba2164e96a10905e57c0ddcf1ec4d7b66bc26226dba413b86016439f0e35f"
checksum = "d31e6e48fb130f8baeaf8efc6fb9820012b4f5a281860c84b7a9375bf0c7fd11"
dependencies = [
"deno_ast",
"dprint-core",

View file

@ -52,9 +52,9 @@ base64 = "0.13.0"
clap = "2.33.3"
data-url = "0.1.0"
dissimilar = "1.0.2"
dprint-plugin-json = "0.13.1"
dprint-plugin-markdown = "0.11.1"
dprint-plugin-typescript = "0.59.0"
dprint-plugin-json = "0.13.2"
dprint-plugin-markdown = "0.11.2"
dprint-plugin-typescript = "0.59.1"
encoding_rs = "0.8.29"
env_logger = "0.8.4"
fancy-regex = "0.7.1"