From 342a62fc4d809b8001424d4c636bb2f49d149f21 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Mon, 16 Oct 2023 14:04:23 -0400 Subject: [PATCH] chore: upgrade to uutils_term_grid from unmaintained term_grid --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc56a5d10..0caac4f94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -374,11 +374,11 @@ dependencies = [ "phf", "proc-mounts", "scoped_threadpool", - "term_grid", "terminal_size", "timeago", "trycmd", "unicode-width", + "uutils_term_grid", "uzers", "windows-sys", "zoneinfo_compiled", @@ -1067,15 +1067,6 @@ dependencies = [ "windows-sys", ] -[[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.3.0" @@ -1223,6 +1214,15 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +[[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 = "uzers" version = "0.11.3" diff --git a/Cargo.toml b/Cargo.toml index acc2ede29..cc83978e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ number_prefix = "0.4" percent-encoding = "2.3.0" phf = { version = "0.11.2", features = ["macros"] } scoped_threadpool = "0.1" -term_grid = "0.1" +uutils_term_grid = "0.3" terminal_size = "0.3.0" timeago = { version = "0.4.2", default-features = false } unicode-width = "0.1"