update deps, for real

This commit is contained in:
dignifiedquire
2020-05-24 19:06:22 +02:00
parent 0760bfaf7b
commit 811655bc98
2 changed files with 7 additions and 20 deletions

23
Cargo.lock generated
View File

@@ -136,9 +136,9 @@ dependencies = [
[[package]] [[package]]
name = "async-imap" name = "async-imap"
version = "0.3.0" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dacff85e0a4ef94b196344a715bfb655d1ec806693d7a566569154b5ea74284" checksum = "8113a1ae7ed80ce764f7474f4323b66f945367c2195d046cfa5efdde30fca04c"
dependencies = [ dependencies = [
"async-native-tls", "async-native-tls",
"async-std", "async-std",
@@ -1757,19 +1757,6 @@ dependencies = [
"void", "void",
] ]
[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags",
"cc",
"cfg-if",
"libc",
"void",
]
[[package]] [[package]]
name = "nodrop" name = "nodrop"
version = "0.1.14" version = "0.1.14"
@@ -2579,7 +2566,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"memchr", "memchr",
"nix 0.13.1", "nix",
"unicode-segmentation", "unicode-segmentation",
"unicode-width", "unicode-width",
"utf8parse", "utf8parse",
@@ -2804,13 +2791,13 @@ checksum = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
[[package]] [[package]]
name = "smol" name = "smol"
version = "0.1.10" version = "0.1.10"
source = "git+https://github.com/dignifiedquire/smol?branch=isolate-nix#09727d70f2349a3991162abd90e751838e1617b5" source = "git+https://github.com/dignifiedquire/smol-1?branch=isolate-nix#8b35e961d82e4543feadec86828500092b5e1938"
dependencies = [ dependencies = [
"async-task", "async-task",
"crossbeam", "crossbeam",
"futures-io", "futures-io",
"futures-util", "futures-util",
"nix 0.17.0", "libc",
"once_cell", "once_cell",
"piper", "piper",
"scoped-tls-hkt", "scoped-tls-hkt",

View File

@@ -23,7 +23,7 @@ num-traits = "0.2.6"
async-smtp = { version = "0.3" } async-smtp = { version = "0.3" }
email = { git = "https://github.com/deltachat/rust-email", branch = "master" } email = { git = "https://github.com/deltachat/rust-email", branch = "master" }
lettre_email = { git = "https://github.com/deltachat/lettre", branch = "master" } lettre_email = { git = "https://github.com/deltachat/lettre", branch = "master" }
async-imap = "0.3.0" async-imap = "0.3.1"
async-native-tls = { version = "0.3.3" } async-native-tls = { version = "0.3.3" }
async-std = { version = "1.6.0", features = ["unstable"] } async-std = { version = "1.6.0", features = ["unstable"] }
base64 = "0.11" base64 = "0.11"
@@ -97,4 +97,4 @@ vendored = ["async-native-tls/vendored", "async-smtp/native-tls-vendored"]
nightly = ["pgp/nightly"] nightly = ["pgp/nightly"]
[patch.crates-io] [patch.crates-io]
smol = { git = "https://github.com/dignifiedquire/smol", branch = "isolate-nix" } smol = { git = "https://github.com/dignifiedquire/smol-1", branch = "isolate-nix" }