aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2020-09-10 12:39:07 +0200
committerDaniel Mueller <deso@posteo.net>2021-01-10 21:05:44 -0800
commite085dcda752f7a5007e35c2baecbf094d888faa0 (patch)
tree45a1000cd8f69d6f02dae64bc1f17d48b4a84176 /Cargo.lock
parent763219bc4331331351b4180d4775432e9e11f8b2 (diff)
downloadnitrocli-e085dcda752f7a5007e35c2baecbf094d888faa0.tar.gz
nitrocli-e085dcda752f7a5007e35c2baecbf094d888faa0.tar.bz2
Show progress bar in fill output
This patch uses the progressing crate to display a progress bar for the fill command if the output is printed to a TTY.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index aad2667..d80c809 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -164,6 +164,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
[[package]]
+name = "log"
+version = "0.4.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
name = "memchr"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -204,6 +213,7 @@ dependencies = [
"nitrokey",
"nitrokey-test",
"nitrokey-test-state",
+ "progressing",
"regex",
"serde",
"structopt",
@@ -300,6 +310,15 @@ dependencies = [
]
[[package]]
+name = "progressing"
+version = "3.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97b7db19a74ba7c34de36558abed080568491d2b8999a34de914b1793b0b4b1b"
+dependencies = [
+ "log",
+]
+
+[[package]]
name = "quote"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"