summaryrefslogtreecommitdiffstats
path: root/ipc
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 /ipc
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.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
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"] }