aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEric Hodel <drbrain@segment7.net>2024-02-26 04:07:59 -0800
committerGitHub <noreply@github.com>2024-02-26 12:07:59 +0000
commita3743f846b87850474518b20fdfd362468503a00 (patch)
treea0dc2c7f6916eb33e13415b9e54beccd79f29f33 /Cargo.lock
parentfeat: Add '/', '?', and 'I' bindings to vim-normal mode (#1760) (diff)
downloadatuin-a3743f846b87850474518b20fdfd362468503a00.zip
fix(stats): Enable multiple command stats to be shown using unicode_segmentation (#1739)
* Enable multiple command stats to be shown Add improved pipe splitting Clean up split logic Remove unnecessary lifetime annotations Add per-column command padding * Add failing test case * Update #1054 to use unicode_segmentation This addresses feedback in PR #1054 Closes #1054 * Address cargo clippy, fmt --------- Co-authored-by: Sorenson Stallings <contact@sorenson.dev> Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 608d5fc5..0f543bc7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -217,6 +217,7 @@ dependencies = [
"tracing",
"tracing-subscriber",
"tracing-tree",
+ "unicode-segmentation",
"unicode-width",
"uuid",
"whoami",
@@ -3937,9 +3938,9 @@ dependencies = [
[[package]]
name = "unicode-segmentation"
-version = "1.10.1"
+version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
+checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
[[package]]
name = "unicode-width"