diff --git a/Cargo.lock b/Cargo.lock index d1997c4..a25eea0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,6 +120,7 @@ dependencies = [ "clap", "criterion", "directories", + "humantime", "owo-colors", "proptest", "serde", @@ -445,6 +446,12 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" +[[package]] +name = "humantime" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" + [[package]] name = "icu_collections" version = "2.1.1" diff --git a/Cargo.toml b/Cargo.toml index c79840f..e2bfc30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,7 @@ anyhow = "1" thiserror = "2" ureq = { version = "2", features = ["json"] } strsim = "0.11" +humantime = "2" owo-colors = { version = "4", features = ["supports-colors"] } supports-color = "3" directories = "6"