summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipc/Cargo.toml4
-rw-r--r--tool/Cargo.toml6
2 files changed, 9 insertions, 1 deletions
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index d74bfd6e..dcae5a4f 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -37,6 +37,10 @@ tokio = "0.1"
tokio-core = "0.1"
tokio-io = "0.1.4"
parity-tokio-ipc = "0.4"
+
+# XXX: We need to pin some dependencies to keep our MSRV at 1.34. If
+# you are packaging Sequoia, feel free to drop these pins if your
+# compiler is newer.
socket2 = "= 0.3.11"
[target.'cfg(windows)'.dependencies]
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index dc017c90..0d502682 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -32,11 +32,15 @@ chrono = "0.4"
clap = "2.32.0"
itertools = "0.8"
prettytable-rs = "0.8.0"
-rpassword = "=4.0.3"
tempfile = "3.0.4"
crossterm = "0.13"
tokio-core = "0.1"
+# XXX: We need to pin some dependencies to keep our MSRV at 1.34. If
+# you are packaging Sequoia, feel free to drop these pins if your
+# compiler is newer.
+rpassword = "=4.0.3"
+
[build-dependencies]
clap = "2.27.1"