summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-04-30 10:03:39 -0400
committerGitHub <noreply@github.com>2023-04-30 10:03:39 -0400
commit96e214d9d0a18a77256f3fcce755dec03fdb49b5 (patch)
tree16ef6a0a4eaa2a102b27a23a07c3f1643480b480 /cli
parent314799bc4f1ee42d6568c1a6a3578fbd3f9596c7 (diff)
fix(fmt/json): support formatting number with exponent and no sign (#18894)
Numbers with an exponent and no sign (ex. `1e1`) would fail to parse.
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index ac3c840e2..319c8cb56 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -65,7 +65,7 @@ clap_complete_fig = "=4.1.2"
console_static_text.workspace = true
data-url.workspace = true
dissimilar = "=1.0.4"
-dprint-plugin-json = "=0.17.0"
+dprint-plugin-json = "=0.17.2"
dprint-plugin-markdown = "=0.15.2"
dprint-plugin-typescript = "=0.84.2"
encoding_rs.workspace = true
@@ -79,7 +79,7 @@ http.workspace = true
hyper.workspace = true
import_map = "=0.15.0"
indexmap.workspace = true
-jsonc-parser = { version = "=0.21.0", features = ["serde"] }
+jsonc-parser = { version = "=0.21.1", features = ["serde"] }
lazy-regex.workspace = true
libc.workspace = true
log = { workspace = true, features = ["serde"] }