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

chore: update dprint-plugin-json to remove duplicate dprint-core dependency (#11209)

This commit is contained in:
David Sherret 2021-07-01 11:22:28 -04:00 committed by GitHub
parent 32b9aa5720
commit 899470addc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 20 deletions

View file

@ -35,8 +35,8 @@
"tools/wpt/manifest.json"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.44.2.wasm",
"https://plugins.dprint.dev/json-0.10.2.wasm",
"https://plugins.dprint.dev/markdown-0.7.1.wasm"
"https://plugins.dprint.dev/typescript-0.47.0.wasm",
"https://plugins.dprint.dev/json-0.12.1.wasm",
"https://plugins.dprint.dev/markdown-0.9.1.wasm"
]
}

21
Cargo.lock generated
View file

@ -892,17 +892,6 @@ dependencies = [
"syn 0.15.44",
]
[[package]]
name = "dprint-core"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "690b3f34a0c0825e5ebbc58f0f0ddf979a6f5fff32f7317886d4917507035760"
dependencies = [
"bumpalo",
"fnv",
"serde",
]
[[package]]
name = "dprint-core"
version = "0.43.0"
@ -916,11 +905,11 @@ dependencies = [
[[package]]
name = "dprint-plugin-json"
version = "0.12.0"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f81e800eede53035880e45b535f6dfd14db3f2ac376f2ab0b67bb0c66224999"
checksum = "1d7402249f4d5d1bf03fe07dc366db5cabe7a3a0c9536a287ffca5171e9ac55c"
dependencies = [
"dprint-core 0.42.0",
"dprint-core",
"jsonc-parser",
"serde",
]
@ -931,7 +920,7 @@ version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53014a2ee8a25470c84d2bdae7d36b7fb4022081a9205aeb8fb9a40c86e080eb"
dependencies = [
"dprint-core 0.43.0",
"dprint-core",
"pulldown-cmark",
"regex",
"serde",
@ -943,7 +932,7 @@ version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "790fb4965f3b4ed7f9627197cf87fdd1a42c7f34f797210988e859cbc9f43d29"
dependencies = [
"dprint-core 0.43.0",
"dprint-core",
"dprint-swc-ecma-ast-view",
"fnv",
"serde",

View file

@ -52,7 +52,7 @@ byteorder = "1.4.3"
clap = "2.33.3"
data-url = "0.1.0"
dissimilar = "1.0.2"
dprint-plugin-json = "0.12.0"
dprint-plugin-json = "0.12.1"
dprint-plugin-markdown = "0.9.1"
dprint-plugin-typescript = "0.47.0"
encoding_rs = "0.8.28"