diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-04-30 10:03:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-30 10:03:39 -0400 |
| commit | 96e214d9d0a18a77256f3fcce755dec03fdb49b5 (patch) | |
| tree | 16ef6a0a4eaa2a102b27a23a07c3f1643480b480 /Cargo.lock | |
| parent | 314799bc4f1ee42d6568c1a6a3578fbd3f9596c7 (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 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 93c7651ec..99a51ffc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1534,9 +1534,9 @@ dependencies = [ [[package]] name = "dprint-plugin-json" -version = "0.17.0" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6120aa5613816db2ef2ef539c229c24f4ee3dbba15317242bcf0de5f17a0060" +checksum = "602d5b9cc4657bdf06d27fa6c22dfcfdb85a19ab555f2834cf7b01ba8001a1f6" dependencies = [ "anyhow", "dprint-core", @@ -2596,9 +2596,9 @@ dependencies = [ [[package]] name = "jsonc-parser" -version = "0.21.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a1853e40333206f9a685358046d13ab200169e3ee573019bddf0ede0dc29307" +checksum = "7b56a20e76235284255a09fcd1f45cf55d3c524ea657ebd3854735925c57743d" dependencies = [ "serde_json", ] |
