summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-07-01 11:22:28 -0400
committerGitHub <noreply@github.com>2021-07-01 11:22:28 -0400
commit899470addc1fe9653f293ef9b85d42ab6d927bc1 (patch)
tree1e338baea922061c242c267615b11f379be8d9aa
parent32b9aa5720dfdedbf0e0c2f3ae0fadb80994849e (diff)
chore: update dprint-plugin-json to remove duplicate dprint-core dependency (#11209)
-rw-r--r--.dprint.json6
-rw-r--r--Cargo.lock21
-rw-r--r--cli/Cargo.toml2
3 files changed, 9 insertions, 20 deletions
diff --git a/.dprint.json b/.dprint.json
index 340693e0d..97ba241d7 100644
--- a/.dprint.json
+++ b/.dprint.json
@@ -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"
]
}
diff --git a/Cargo.lock b/Cargo.lock
index efffd4074..f1641a8cc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -894,17 +894,6 @@ dependencies = [
[[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"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92a4571aa19f70392c2e2868242c5bb1d12dbb489abd29f09411a49483d83d0e"
@@ -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",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index d72ff892d..cedb9750c 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -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"