From 386b3bc3bbaf7a7abaaa2c2587b0510c161cb67a 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.5. - 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 --- ffi/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ffi') diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 504d0cce..eb4d2581 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -27,12 +27,12 @@ sequoia-openpgp = { path = "../openpgp", version = "0.20", default-features = fa sequoia-core = { path = "../core", version = "0.20" } sequoia-store = { path = "../store", version = "0.20", default-features = false } sequoia-net = { path = "../net", version = "0.20", default-features = false } -anyhow = "1" -lazy_static = "1.0.0" -libc = "0.2.33" +anyhow = "1.0.5" +lazy_static = "1.4.0" +libc = "0.2.66" memsec = { version = "0.6", default-features = false } native-tls = "0.2.0" -tokio = { version = "0.2", features = ["rt-core", "io-driver", "io-util", "time"] } +tokio = { version = "0.2.19", features = ["rt-core", "io-driver", "io-util", "time"] } [dev-dependencies] filetime = "0.2" -- cgit v1.2.3