From 94d00b28b734ff093002a1c573878da267f5fcd5 Mon Sep 17 00:00:00 2001 From: xiuxiu62 Date: Tue, 12 Oct 2021 14:55:07 -0700 Subject: [PATCH] add unicode-segmentation crate --- Cargo.lock | 1 + crates/nu-command/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 21a24b46e1..f161b5b59c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -547,6 +547,7 @@ dependencies = [ "terminal_size", "thiserror", "trash", + "unicode-segmentation", ] [[package]] diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 1eed40b672..d06908d00c 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -13,7 +13,9 @@ nu-protocol = { path = "../nu-protocol" } nu-table = { path = "../nu-table" } nu-term-grid = { path = "../nu-term-grid" } nu-parser = { path = "../nu-parser" } + trash = { version = "1.3.0", optional = true } +unicode-segmentation = "1.8.0" # Potential dependencies for extras glob = "0.3.0"