From c60958e550dcfe33048fbaa02f478ce96adb8e7f Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Fri, 20 Sep 2024 15:43:07 -0400 Subject: [PATCH] Update unicode-width --- cursive-core/Cargo.toml | 2 +- cursive-syntect/Cargo.toml | 2 +- cursive/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cursive-core/Cargo.toml b/cursive-core/Cargo.toml index 8041b0ed..2a8e61cd 100644 --- a/cursive-core/Cargo.toml +++ b/cursive-core/Cargo.toml @@ -21,7 +21,7 @@ enum-map = "2.0" enumset = "1.1.4" # EnumSet::empty() became `const` in 1.1.4 log = "0.4" unicode-segmentation = "1" -unicode-width = "0.1" +unicode-width = "0.2" xi-unicode = "0.3" crossbeam-channel = "0.5" lazy_static = "1" diff --git a/cursive-syntect/Cargo.toml b/cursive-syntect/Cargo.toml index c0ab7e42..4266380a 100644 --- a/cursive-syntect/Cargo.toml +++ b/cursive-syntect/Cargo.toml @@ -15,7 +15,7 @@ include = ["src/lib.rs", "LICENSE", "README.md"] [dependencies] cursive_core = { path = "../cursive-core", version= "0.4.0"} -unicode-width = "0.1.9" +unicode-width = "0.2" [dependencies.syntect] version = "5.0.0" diff --git a/cursive/Cargo.toml b/cursive/Cargo.toml index b035cf59..f923d09d 100644 --- a/cursive/Cargo.toml +++ b/cursive/Cargo.toml @@ -27,7 +27,7 @@ cursive_core = { path = "../cursive-core", version= "0.4.0"} crossbeam-channel = "0.5" cfg-if = "1" unicode-segmentation = "1" -unicode-width = "0.1" +unicode-width = "0.2" lazy_static = "1" libc = "0.2" maplit = { version = "1.0", optional = true }