summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorThomas Otto <th1000s@posteo.net>2025-01-09 22:39:47 +0100
committerThomas Otto <th1000s@posteo.net>2025-02-05 23:29:07 +0100
commit44216a176d0561fafa5c7d3a34e8f842e94a8f64 (patch)
treec43be36bee85a222f488fbff8910623a4acba46d /Cargo.toml
parentd4017ea9cbf3a1223c88953c61a33d0f20334524 (diff)
Upgrade unicode-width to v0.1.14 (but still < 0.2.0)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 28982ff..efdec1e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -55,7 +55,9 @@ syntect = "5.0.0"
sysinfo = { version = "0.29.0", default-features = false, features = [] }
terminal-colorsaurus = "0.4.1"
unicode-segmentation = "1.10.1"
-unicode-width = "=0.1.12"
+# 0.2.0 (and 0.1.13) treats \n as width 1. Lines processed by delta have, lose,
+# and re-gain \n in various stages, which complicates upgrading.
+unicode-width = ">=0.1.14, <0.2.0"
xdg = "2.4.1"
[lints.rust]