diff --git a/Cargo.lock b/Cargo.lock index c1a52bdd6..89e1259db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,9 +236,9 @@ dependencies = [ [[package]] name = "async-imap" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bdc2bb91844456110d27da8f712f4cbc693f3538521a43cb79c6b2e6f717f3e" +checksum = "bbb2df4b37a99456360a9ab475b723e3a499d51e060ab1bdd8d7565d23dcb74b" dependencies = [ "async-native-tls", "async-std", @@ -367,7 +367,7 @@ dependencies = [ "memchr", "num_cpus", "once_cell", - "pin-project-lite 0.2.6", + "pin-project-lite", "pin-utils", "slab", "wasm-bindgen-futures", @@ -1613,7 +1613,7 @@ dependencies = [ "futures-io", "memchr", "parking", - "pin-project-lite 0.2.6", + "pin-project-lite", "waker-fn", ] @@ -1654,7 +1654,7 @@ dependencies = [ "futures-sink", "futures-task", "memchr", - "pin-project-lite 0.2.6", + "pin-project-lite", "pin-utils", "proc-macro-hack", "proc-macro-nested", @@ -1852,7 +1852,7 @@ dependencies = [ "cookie", "futures-lite", "infer", - "pin-project-lite 0.2.6", + "pin-project-lite", "rand 0.7.3", "serde", "serde_json", @@ -2624,12 +2624,6 @@ dependencies = [ "syn", ] -[[package]] -name = "pin-project-lite" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" - [[package]] name = "pin-project-lite" version = "0.2.6" @@ -3515,12 +3509,12 @@ checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" [[package]] name = "stop-token" -version = "0.1.2" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06855fb7c94d3be9b3a57c4d82dfc8a43bb658fbb3b1dda79de89e748d9eb9dd" +checksum = "2d5e0f9b25bdd9bf18e33d1f4dd0194c77034b66b4a4842b0bf7f5cf53ca733a" dependencies = [ "async-std", - "pin-project-lite 0.1.12", + "pin-project-lite", ] [[package]] @@ -3577,7 +3571,7 @@ dependencies = [ "http-types", "log", "mime_guess", - "pin-project-lite 0.2.6", + "pin-project-lite", "serde", "serde_json", ] @@ -3738,7 +3732,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "134af885d758d645f0f0505c9a8b3f9bf8a348fd822e112ab5248138348f1722" dependencies = [ "autocfg 1.0.1", - "pin-project-lite 0.2.6", + "pin-project-lite", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8b4a80a61..f2793d3fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ deltachat_derive = { path = "./deltachat_derive" } ansi_term = { version = "0.12.1", optional = true } anyhow = "1.0.40" -async-imap = "0.4.0" +async-imap = "0.5.0" async-native-tls = { version = "0.3.3" } async-smtp = { git = "https://github.com/async-email/async-smtp", rev="2275fd8d13e39b2c58d6605c786ff06ff9e05708" } async-std-resolver = "0.20.2" @@ -65,7 +65,7 @@ serde = { version = "1.0", features = ["derive"] } sha-1 = "0.9.3" sha2 = "0.9.0" smallvec = "1.0.0" -stop-token = { version = "0.1.1", features = ["unstable"] } +stop-token = "0.2.0" strum = "0.20.0" strum_macros = "0.20.1" surf = { version = "2.0.0-alpha.4", default-features = false, features = ["h1-client"] }