summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-07 17:09:34 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-07 17:11:29 +0100
commiteaaaf33dc15df65a7d34b9f436080e49f30f9715 (patch)
tree52b655094a2cf0ca4f7cd2851402f009e363eee6
parent2fd5dea1baec37a6518506320a8ac06789ee1a22 (diff)
Pin dependencies to keep our MSRV stable.
-rw-r--r--Cargo.lock8
-rw-r--r--openpgp/Cargo.toml2
-rw-r--r--sqv/Cargo.toml1
-rw-r--r--tool/Cargo.toml3
4 files changed, 9 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 155719d2..5120204c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -44,7 +44,7 @@ name = "assert_cli"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
- "colored 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "colored 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"environment 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -323,7 +323,7 @@ dependencies = [
[[package]]
name = "colored"
-version = "1.9.0"
+version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1696,6 +1696,7 @@ dependencies = [
"assert_cli 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "colored 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-openpgp 0.13.0",
]
@@ -1726,6 +1727,7 @@ dependencies = [
"assert_cli 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "colored 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"crossterm 0.13.3 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2280,7 +2282,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853"
"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
-"checksum colored 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "433e7ac7d511768127ed85b0c4947f47a254131e37864b2dc13f52aa32cd37e5"
+"checksum colored 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f930f8b286023ed451756fe2527d73484d667adf9e905e9932e81d52996a343a"
"checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120"
"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 1e958b7e..88ef91de 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -41,7 +41,7 @@ unicode-normalization = "=0.1.9"
lalrpop = "0.17"
[dev-dependencies]
-rpassword = "4.0"
+rpassword = "=4.0.3"
[features]
default = ["compression"]
diff --git a/sqv/Cargo.toml b/sqv/Cargo.toml
index 569cc144..e388a7c8 100644
--- a/sqv/Cargo.toml
+++ b/sqv/Cargo.toml
@@ -31,6 +31,7 @@ clap = "2.27.1"
[dev-dependencies]
assert_cli = "0.6"
+colored = "=1.9.1"
[[bin]]
name = "sqv"
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index fb9a36de..ecf1dab4 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -32,7 +32,7 @@ clap = "2.32.0"
failure = "0.1.2"
itertools = "0.8"
prettytable-rs = "0.8.0"
-rpassword = "4.0"
+rpassword = "=4.0.3"
tempfile = "3.0.4"
crossterm = "0.13"
tokio-core = "0.1"
@@ -42,6 +42,7 @@ clap = "2.27.1"
[dev-dependencies]
assert_cli = "0.6"
+colored = "=1.9.1"
[[bin]]
name = "sq"