diff --git a/Cargo.lock b/Cargo.lock index 9d43cc65d..a0a62d13b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2085,15 +2085,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "term_grid" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "230d3e804faaed5a39b08319efb797783df2fd9671b39b7596490cb486d702cf" -dependencies = [ - "unicode-width", -] - [[package]] name = "terminal_size" version = "0.2.6" @@ -2649,10 +2640,10 @@ dependencies = [ "number_prefix", "once_cell", "selinux", - "term_grid", "terminal_size 0.3.0", "unicode-width", "uucore", + "uutils_term_grid", ] [[package]] @@ -3276,6 +3267,15 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" +[[package]] +name = "uutils_term_grid" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b389452a568698688dda38802068378a16c15c4af9b153cdd99b65391292bbc7" +dependencies = [ + "unicode-width", +] + [[package]] name = "version_check" version = "0.9.4" diff --git a/Cargo.toml b/Cargo.toml index df729a765..820568e61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -318,7 +318,7 @@ selinux = "0.4" signal-hook = "0.3.17" smallvec = { version = "1.11", features = ["union"] } tempfile = "3.8.0" -term_grid = "0.1.5" +uutils_term_grid = "0.3" terminal_size = "0.3.0" textwrap = { version = "0.16.0", features = ["terminal_size"] } thiserror = "1.0" diff --git a/src/uu/ls/Cargo.toml b/src/uu/ls/Cargo.toml index e4100d07f..4394865ca 100644 --- a/src/uu/ls/Cargo.toml +++ b/src/uu/ls/Cargo.toml @@ -19,7 +19,7 @@ clap = { workspace = true, features = ["env"] } chrono = { workspace = true } unicode-width = { workspace = true } number_prefix = { workspace = true } -term_grid = { workspace = true } +uutils_term_grid = { workspace = true } terminal_size = { workspace = true } glob = { workspace = true } lscolors = { workspace = true }