diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-05-21 20:43:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 20:43:32 -0400 |
commit | ee710994925e8840ea387e1853d9c15f3eb73149 (patch) | |
tree | b2fee3ef0906065826e0ce6ffc62d3996462de43 | |
parent | 491feb859f30f56bc25d6afc730a1c709a0bb807 (diff) |
fix(fmt): Do not panic on new expr with no parens. (#5734)
Closes #5567
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3e935f094..4dfb9b576 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -618,9 +618,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.18.4" +version = "0.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9789e9282a2fef314dd58df1e203de44035b0f032923b52f751c7917f7adff3" +checksum = "8f4b628385a13a592afdd6391167921f62f1c1adc1f7b098ecf7e930ab5cc702" dependencies = [ "dprint-core", "serde", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 56bdadc0a..94c4a35f2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -29,7 +29,7 @@ byteorder = "1.3.4" clap = "2.33.0" dirs = "2.0.2" dlopen = "0.1.8" -dprint-plugin-typescript = "0.18.4" +dprint-plugin-typescript = "0.18.5" futures = { version = "0.3.4", features = ["compat", "io-compat"] } glob = "0.3.0" http = "0.2.1" |