From 473e13d3e017ada95e8f884ca5558adef0823723 Mon Sep 17 00:00:00 2001 From: Maxim Zhiburt Date: Tue, 6 Aug 2024 00:22:14 +0300 Subject: [PATCH] Switch tabled to crates.io --- Cargo.lock | 11 ++++++----- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68705763ab..4ccf7f7435 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3900,8 +3900,9 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" [[package]] name = "papergrid" -version = "0.11.0" -source = "git+https://github.com/zhiburt/tabled/?rev=595b6cd0b0dc8c98033f0be0e18796222ffc0c9a#595b6cd0b0dc8c98033f0be0e18796222ffc0c9a" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7419ad52a7de9b60d33e11085a0fe3df1fbd5926aa3f93d3dd53afbc9e86725" dependencies = [ "ansi-str", "ansitok", @@ -6000,13 +6001,13 @@ dependencies = [ [[package]] name = "tabled" -version = "0.15.0" -source = "git+https://github.com/zhiburt/tabled/?rev=595b6cd0b0dc8c98033f0be0e18796222ffc0c9a#595b6cd0b0dc8c98033f0be0e18796222ffc0c9a" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77c9303ee60b9bedf722012ea29ae3711ba13a67c9b9ae28993838b63057cb1b" dependencies = [ "ansi-str", "ansitok", "papergrid", - "unicode-width", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8a210a6b9a..45e4f4f55b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -156,7 +156,7 @@ sha2 = "0.10" strip-ansi-escapes = "0.2.0" syn = "2.0" sysinfo = "0.30" -tabled = { git = "https://github.com/zhiburt/tabled/", rev = "595b6cd0b0dc8c98033f0be0e18796222ffc0c9a", default-features = false } +tabled = { version = "0.16.0", default-features = false } tempfile = "3.10" terminal_size = "0.3" titlecase = "2.0"