diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-29 19:34:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 00:34:38 +0000 |
commit | 73f8c820f37674f22baaa03fa07fd4ae87a274d5 (patch) | |
tree | 195e0c872b38c80792ff176947e8577bc9eaf555 | |
parent | e2655c992e6d057c7965a21d6f32eb52760e0d36 (diff) |
fix(fmt/markdown): fix emoji width calculation in tables (#16870)
https://github.com/dprint/dprint-plugin-markdown/pull/67
-rw-r--r-- | Cargo.lock | 5 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index b5b1a6ce9..2ee84832c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1445,15 +1445,16 @@ dependencies = [ [[package]] name = "dprint-plugin-markdown" -version = "0.14.2" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49cf3bc0cb9cc526a894b1d5af07c2ce2af1fa56b765990845ec781ab4cd1c91" +checksum = "999e8891976e3b15b519b920db4ac70c6a85f0c6f0e0ddb6ef3b247373e8984d" dependencies = [ "anyhow", "dprint-core", "pulldown-cmark", "regex", "serde", + "unicode-width", ] [[package]] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0bbb75ddc..414252548 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -62,7 +62,7 @@ clap_complete_fig = "=3.1.5" data-url.workspace = true dissimilar = "=1.0.4" dprint-plugin-json = "=0.16.0" -dprint-plugin-markdown = "=0.14.2" +dprint-plugin-markdown = "=0.14.3" dprint-plugin-typescript = "=0.78.0" encoding_rs.workspace = true env_logger = "=0.9.0" |