diff options
author | metamuffin <metamuffin@disroot.org> | 2022-10-13 17:53:50 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-10-13 17:53:50 +0200 |
commit | d081461dd7fe2a6db94b196324bc485c10a77c7a (patch) | |
tree | af467fcac40f12943941c1ee128c612dbf40b114 /Cargo.lock | |
parent | bc8bba637e51d1c813c3edcf8747991dc69319e9 (diff) | |
download | keks-meet-d081461dd7fe2a6db94b196324bc485c10a77c7a.tar keks-meet-d081461dd7fe2a6db94b196324bc485c10a77c7a.tar.bz2 keks-meet-d081461dd7fe2a6db94b196324bc485c10a77c7a.tar.zst |
show progress in human readable format
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 70 |
1 files changed, 70 insertions, 0 deletions
@@ -443,6 +443,20 @@ dependencies = [ ] [[package]] +name = "console" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" +dependencies = [ + "encode_unicode", + "lazy_static", + "libc 0.2.132", + "terminal_size", + "unicode-width", + "winapi", +] + +[[package]] name = "const-oid" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -753,6 +767,12 @@ dependencies = [ ] [[package]] +name = "encode_unicode" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" + +[[package]] name = "env_logger" version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1086,6 +1106,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" [[package]] +name = "humansize" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a866837516f34ad34fb221f3ee01fd0db75f2c2f6abeda2047dc6963fb04ad9a" +dependencies = [ + "libm", +] + +[[package]] name = "humantime" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1142,6 +1171,17 @@ dependencies = [ ] [[package]] +name = "indicatif" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfddc9561e8baf264e0e45e197fd7696320026eb10a8180340debc27b18f535b" +dependencies = [ + "console", + "number_prefix", + "unicode-width", +] + +[[package]] name = "inout" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1233,6 +1273,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" [[package]] +name = "libm" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "292a948cd991e376cf75541fe5b97a1081d713c618b4f1b9500f8844e49eb565" + +[[package]] name = "listenfd" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1410,6 +1456,12 @@ dependencies = [ ] [[package]] +name = "number_prefix" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" + +[[package]] name = "oid-registry" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1757,6 +1809,8 @@ dependencies = [ "clap", "client-native-lib", "env_logger", + "humansize", + "indicatif", "log", "tokio", ] @@ -2175,6 +2229,16 @@ dependencies = [ ] [[package]] +name = "terminal_size" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" +dependencies = [ + "libc 0.2.132", + "winapi", +] + +[[package]] name = "textwrap" version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2451,6 +2515,12 @@ dependencies = [ ] [[package]] +name = "unicode-width" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + +[[package]] name = "unicode-xid" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" |