summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2022-06-08 12:59:25 +0200
committerNeal H. Walfield <neal@pep.foundation>2022-06-09 14:36:00 +0200
commitde8583b632dc63b490b646624ffb7f956391d7a2 (patch)
tree8bb16f9ebdd9621ea2e9c513efc010bc859adb1c /ipc
parentdd44935e5a6ef1011d6ec6bc9bd7722187e511ec (diff)
ipc: Update to the latest versions of capnproto and tokio.
- Use the latest versions of capnp and tokio. - The ipc crate exposes capnp and tokio symbols via its public API (sequoia_ipc::Handler). Thus any user of the ipc crate has to use the same version. Upgrade the dependencies so that downstream users can use the latest features.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 71d7397b..8cfeafb9 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -24,7 +24,7 @@ sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = f
anyhow = "1.0.18"
buffered-reader = { path = "../buffered-reader", version = "1.0.0", default-features = false }
-capnp-rpc = "0.13"
+capnp-rpc = "0.14"
fs2 = "0.4.2"
futures = "0.3.5"
lalrpop-util = ">=0.17"
@@ -34,8 +34,8 @@ memsec = { version = ">=0.5", default-features = false }
rand = { version = "0.8" }
tempfile = "3.1"
thiserror = "1.0.2"
-tokio = { version = "1.13.1", features = [ "rt-multi-thread", "io-util", "net" ] }
-tokio-util = { version = "0.6", features = ["compat"] }
+tokio = { version = "1.19", features = [ "rt-multi-thread", "io-util", "net" ] }
+tokio-util = { version = "0.7", features = ["compat"] }
socket2 = "0.4"
dirs = "4.0"