summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-03 18:48:10 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-03 18:50:45 +0200
commit2a19afb8659e081695ebdc5402e9605dbb50e5af (patch)
treec4ac8f1ef163b766266f816f92379e72de1652e5
parenta9ca727cab50c0c91098a7ef8aea79f5f62a1f5c (diff)
Pin dependencies to keep our MSRV stable.
- Our previous approach of constraining the version using "< 0.1.10" no longer worked, and resulted in two versions of the crate being selected, one of which exceeded our MSRV. - Same for socket2.
-rw-r--r--Cargo.lock1
-rw-r--r--ipc/Cargo.toml1
-rw-r--r--openpgp/Cargo.toml2
3 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ee41efca..2c6e151e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1673,6 +1673,7 @@ dependencies = [
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sequoia-core 0.15.0",
"sequoia-openpgp 0.15.0",
+ "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 78645ea5..5e3aa37d 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -37,6 +37,7 @@ tokio = "0.1"
tokio-core = "0.1"
tokio-io = "0.1.4"
parity-tokio-ipc = "0.4"
+socket2 = "= 0.3.11"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", default-features = false, features = ["winsock2"] }
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index c63b5ee6..a79ec524 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -37,7 +37,7 @@ quickcheck = { version = "0.9", default-features = false }
rand = { version = "0.7", default-features = false }
regex = "1"
thiserror = "1"
-unicode-normalization = "< 0.1.10"
+unicode-normalization = "= 0.1.9"
[build-dependencies]
lalrpop = "0.17"