mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
chore: update dprint-plugin-json to remove duplicate dprint-core dependency (#11209)
This commit is contained in:
parent
32b9aa5720
commit
899470addc
3 changed files with 9 additions and 20 deletions
|
@ -35,8 +35,8 @@
|
||||||
"tools/wpt/manifest.json"
|
"tools/wpt/manifest.json"
|
||||||
],
|
],
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"https://plugins.dprint.dev/typescript-0.44.2.wasm",
|
"https://plugins.dprint.dev/typescript-0.47.0.wasm",
|
||||||
"https://plugins.dprint.dev/json-0.10.2.wasm",
|
"https://plugins.dprint.dev/json-0.12.1.wasm",
|
||||||
"https://plugins.dprint.dev/markdown-0.7.1.wasm"
|
"https://plugins.dprint.dev/markdown-0.9.1.wasm"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
21
Cargo.lock
generated
21
Cargo.lock
generated
|
@ -892,17 +892,6 @@ dependencies = [
|
||||||
"syn 0.15.44",
|
"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]]
|
[[package]]
|
||||||
name = "dprint-core"
|
name = "dprint-core"
|
||||||
version = "0.43.0"
|
version = "0.43.0"
|
||||||
|
@ -916,11 +905,11 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dprint-plugin-json"
|
name = "dprint-plugin-json"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8f81e800eede53035880e45b535f6dfd14db3f2ac376f2ab0b67bb0c66224999"
|
checksum = "1d7402249f4d5d1bf03fe07dc366db5cabe7a3a0c9536a287ffca5171e9ac55c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dprint-core 0.42.0",
|
"dprint-core",
|
||||||
"jsonc-parser",
|
"jsonc-parser",
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
@ -931,7 +920,7 @@ version = "0.9.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "53014a2ee8a25470c84d2bdae7d36b7fb4022081a9205aeb8fb9a40c86e080eb"
|
checksum = "53014a2ee8a25470c84d2bdae7d36b7fb4022081a9205aeb8fb9a40c86e080eb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dprint-core 0.43.0",
|
"dprint-core",
|
||||||
"pulldown-cmark",
|
"pulldown-cmark",
|
||||||
"regex",
|
"regex",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -943,7 +932,7 @@ version = "0.47.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "790fb4965f3b4ed7f9627197cf87fdd1a42c7f34f797210988e859cbc9f43d29"
|
checksum = "790fb4965f3b4ed7f9627197cf87fdd1a42c7f34f797210988e859cbc9f43d29"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dprint-core 0.43.0",
|
"dprint-core",
|
||||||
"dprint-swc-ecma-ast-view",
|
"dprint-swc-ecma-ast-view",
|
||||||
"fnv",
|
"fnv",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
|
@ -52,7 +52,7 @@ byteorder = "1.4.3"
|
||||||
clap = "2.33.3"
|
clap = "2.33.3"
|
||||||
data-url = "0.1.0"
|
data-url = "0.1.0"
|
||||||
dissimilar = "1.0.2"
|
dissimilar = "1.0.2"
|
||||||
dprint-plugin-json = "0.12.0"
|
dprint-plugin-json = "0.12.1"
|
||||||
dprint-plugin-markdown = "0.9.1"
|
dprint-plugin-markdown = "0.9.1"
|
||||||
dprint-plugin-typescript = "0.47.0"
|
dprint-plugin-typescript = "0.47.0"
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.28"
|
||||||
|
|
Loading…
Reference in a new issue