summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-08-22 15:25:17 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-08-22 15:25:17 +0200
commitee21a762b5595cbdea6de05c7c651e2c3e87025b (patch)
treea0cf7e047deeaff33cb3479b3ee0025928623ddf
parent78e5079d90cec7975548c4d058494bf2cf32e11a (diff)
Bump rpassword to 0.4.
-rw-r--r--Cargo.lock11
-rw-r--r--openpgp/Cargo.toml2
-rw-r--r--tool/Cargo.toml2
3 files changed, 7 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 992b47ab..95989766 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1455,12 +1455,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rpassword"
-version = "3.0.2"
+version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
- "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -1687,7 +1686,7 @@ dependencies = [
"nettle 5.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"quickcheck 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
- "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-rfc2822 0.9.0",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -1759,7 +1758,7 @@ dependencies = [
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"prettytable-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-core 0.9.0",
"sequoia-net 0.9.0",
"sequoia-openpgp 0.9.0",
@@ -2492,7 +2491,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b143cceb2ca5e56d5671988ef8b15615733e7ee16cd348e064333b251b89343f"
"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
"checksum rgb 0.8.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2089e4031214d129e201f8c3c8c2fe97cd7322478a0d1cdf78e7029b0042efdb"
-"checksum rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34fa7bcae7fca3c8471e8417088bbc3ad9af8066b0ecf4f3c0d98a0d772716e"
+"checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd"
"checksum rusqlite 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9d9118f1ce84d8d0b67f9779936432fb42bb620cef2122409d786892cce9a3c"
"checksum rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ca4eaef519b494d1f2848fc602d18816fed808a981aedf4f1f00ceb7c9d32cf"
"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 0a914fc3..15eb62e7 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -42,7 +42,7 @@ sequoia-rfc2822 = { path = "../rfc2822", version = "0.9" }
lalrpop = "0.17"
[dev-dependencies]
-rpassword = "3.0"
+rpassword = "4.0"
[features]
default = ["compression"]
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index d9f86bbf..27c90bd2 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -31,7 +31,7 @@ clap = "2.32.0"
failure = "0.1.2"
itertools = "0.8"
prettytable-rs = "0.8.0"
-rpassword = "3.0"
+rpassword = "4.0"
tempfile = "3.0.4"
termsize = "0.1"
time = "0.1.38"