From 3c92794ceff906fb00b7cc4513a9782964788a73 Mon Sep 17 00:00:00 2001 From: Neal Fachan Date: Wed, 30 Oct 2024 15:36:32 -0700 Subject: [PATCH] Upgrade unicode-truncate to 1.1.0. --- Cargo.lock | 13 ++----------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a5719c5..4551309e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3580,7 +3580,7 @@ dependencies = [ "tempfile", "toml", "tui-term", - "unicode-truncate 0.2.0", + "unicode-truncate", "unicode-width 0.2.0", "vt100", "xdg", @@ -4846,7 +4846,7 @@ dependencies = [ "paste", "strum", "unicode-segmentation", - "unicode-truncate 1.1.0", + "unicode-truncate", "unicode-width 0.2.0", ] @@ -6312,15 +6312,6 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" -[[package]] -name = "unicode-truncate" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a04be5ca5f7a4a7270ffea82bc41c59b87c611ed04f20e77c338e8d3c2348e42" -dependencies = [ - "unicode-width 0.1.14", -] - [[package]] name = "unicode-truncate" version = "1.1.0" diff --git a/Cargo.toml b/Cargo.toml index aa7012cb..9c688b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -157,7 +157,7 @@ tonic-build = "0.11" tower = { version = "0.5", features = ["util"] } tuple = "0.5.1" tui-term = "0.2.0" -unicode-truncate = "0.2.0" +unicode-truncate = "1" unicode-width = "0.2.0" versions = "6.2.0" vt100 = "0.15"