diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-23 16:11:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 16:11:45 -0500 |
commit | 22cd8ebf1f3ecee6bb7646d0e77762b51cf4bd90 (patch) | |
tree | c5687e47116f45d56fb0387fa8de1dd2b36e0c21 /cli | |
parent | bcf2156dbfac42d7bc9b0f6cb759a97d27b43a78 (diff) |
perf(fmt): reduce memory usage and improve performance (#22570)
Reduces memory usage of the fmt command and fixes a memory leak.
Also improves slightly improves performance.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b376f924e..ad1e024b7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -95,10 +95,10 @@ dashmap = "5.5.3" data-encoding.workspace = true dissimilar = "=1.0.4" dotenvy = "0.15.7" -dprint-plugin-json = "=0.19.1" -dprint-plugin-jupyter = "=0.1.2" -dprint-plugin-markdown = "=0.16.3" -dprint-plugin-typescript = "=0.89.2" +dprint-plugin-json = "=0.19.2" +dprint-plugin-jupyter = "=0.1.3" +dprint-plugin-markdown = "=0.16.4" +dprint-plugin-typescript = "=0.89.3" env_logger = "=0.10.0" fancy-regex = "=0.10.0" # If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`. |