From bd91530f5486337536cfacfa2f31ddf43f7f74fa Mon Sep 17 00:00:00 2001 From: Nora Widdecke Date: Thu, 10 Dec 2020 11:04:09 +0100 Subject: Correct minimal versions. - Versions required by feature or API usage: - anyhow 1.0.18. - policy::test::reject_seip_packet and policy::test::reject_cipher' fail - We use `impl From for Box`, introduced in 1.0.5. - tokio 0.2.19 - We use `tokio::net::tcp::OwnedReadHalf`, introduced in 0.2.19. - chrono 0.4.10 - We use the `std` feature, introduced in 0.4.10. - thiserror 1.0.2 - futures and futures-util 0.3.5 - tempfile 3.1 - c_doctests require the same version of rand both as direct dependency and through tempfile. - Yanked versions: - structopt 0.3.11. 0.3.8 to 0.3.10 were yanked. - socket2 0.3.16. 0.3.0 to 0.3.15 were yanked. - Update our dependencies to the package versions required by other dependencies, e.g. structopt requires lazy_static 1.4.0. - clap 2.33 - lazy_static to 1.4.0 - libc to 0.2.66 - proc-macro2 to 1.0.7 - syn to 1.0.5. - winapi 0.3.8 --- ipc/Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ipc') diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml index 3988506f..275e7af1 100644 --- a/ipc/Cargo.toml +++ b/ipc/Cargo.toml @@ -23,31 +23,31 @@ maintenance = { status = "actively-developed" } sequoia-openpgp = { path = "../openpgp", version = "0.20", default-features = false } sequoia-core = { path = "../core", version = "0.20" } -anyhow = "1" +anyhow = "1.0.18" buffered-reader = { path = "../buffered-reader", version = "0.20", default-features = false } capnp-rpc = "0.13" fs2 = "0.4.2" -futures = "0.3" +futures = "0.3.5" lalrpop-util = "0.19" -lazy_static = "1.3" -libc = "0.2.33" +lazy_static = "1.4.0" +libc = "0.2.66" memsec = { version = "0.6", default-features = false } rand = { version = "0.7", default-features = false } -tempfile = "3.0" -thiserror = "1" -tokio = { version = "0.2", features = ["rt-core", "rt-util", "tcp", "uds", "io-util", "macros"] } +tempfile = "3.1" +thiserror = "1.0.2" +tokio = { version = "0.2.19", features = ["rt-core", "rt-util", "tcp", "uds", "io-util", "macros"] } tokio-util = { version = "0.3", features = ["compat"] } -socket2 = "0.3.11" +socket2 = "0.3.16" [target.'cfg(windows)'.dependencies] -winapi = { version = "0.3", default-features = false, features = ["winsock2"] } +winapi = { version = "0.3.8", default-features = false, features = ["winsock2"] } ctor = "0.1" [build-dependencies] lalrpop = "0.19" [dev-dependencies] -clap = "2.32.0" +clap = "2.33" quickcheck = { version = "0.9", default-features = false } [features] -- cgit v1.2.3