diff --git a/Cargo.lock b/Cargo.lock index 4564ab80..38015b86 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 97235efe..82bf8fe3 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"] }