summaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2020-12-10 11:04:09 +0100
committerNora Widdecke <nora@sequoia-pgp.org>2020-12-11 15:47:17 +0100
commitbd91530f5486337536cfacfa2f31ddf43f7f74fa (patch)
treee5162128b9d0f12e555d8d2acf44a8f73910e546 /store
parente5712889a0f6f678323ed86c6aad54b807694a7c (diff)
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<anyhow::Error> for Box<dyn std::error::Error + Send + Sync + 'static>`, 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
Diffstat (limited to 'store')
-rw-r--r--store/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/store/Cargo.toml b/store/Cargo.toml
index c5e1c452..aaff69a9 100644
--- a/store/Cargo.toml
+++ b/store/Cargo.toml
@@ -36,14 +36,14 @@ sequoia-openpgp = { path = "../openpgp", version = "0.20", default-features = fa
sequoia-core = { path = "../core", version = "0.20" }
sequoia-ipc = { path = "../ipc", version = "0.20", default-features = false }
sequoia-net = { path = "../net", version = "0.20", default-features = false }
-anyhow = "1"
+anyhow = "1.0.18"
capnp = "0.13"
capnp-rpc = "0.13"
-futures-util = "0.3"
+futures-util = "0.3.5"
rand = { version = "0.7", default-features = false }
rusqlite = "0.24"
-thiserror = "1"
-tokio = { version = "0.2", features = ["rt-core", "tcp", "io-driver", "time"] }
+thiserror = "1.0.2"
+tokio = { version = "0.2.19", features = ["rt-core", "tcp", "io-driver", "time"] }
tokio-util = { version = "0.3", features = ["compat"] }
[target.'cfg(target_os="android")'.dependencies.rusqlite]