diff --git a/Cargo.lock b/Cargo.lock index 74c9b602..7f772904 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,6 +115,11 @@ name = "ascii_table" version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c2bee9b9ee0e5768772e38c07ef0ba23a490d7e1336ec7207c25712a2661c55" +dependencies = [ + "lazy_static", + "regex", + "unicode-width", +] [[package]] name = "async-trait" diff --git a/Cargo.toml b/Cargo.toml index 761f3e81..04b24fd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ maintenance = { status = "passively-maintained" } [dependencies] anyhow = "1" aquamarine = "0.5" -ascii_table = "4" +ascii_table = { version = "4", features = ["color_codes", "wide_characters"] } bytesize = "1" chrono = "0.4" clap = { version = "4", features = ["cargo"] }