From 90d1ae53b7b02d0760cdf20f38c7ebc93c3de7da Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sat, 14 Nov 2020 21:06:54 +0000 Subject: [PATCH] build(deps): bump isahc from 0.9.12 to 0.9.13 Bumps [isahc](https://github.com/sagebind/isahc) from 0.9.12 to 0.9.13. - [Release notes](https://github.com/sagebind/isahc/releases) - [Commits](https://github.com/sagebind/isahc/compare/0.9.12...0.9.13) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 68 ++++++++++++++++++++++++++++++++++++++++++---- desktop/Cargo.toml | 2 +- 2 files changed, 63 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2aa4882b..27da3d31c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1164,6 +1164,15 @@ dependencies = [ "walkdir", ] +[[package]] +name = "fastrand" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3" +dependencies = [ + "instant", +] + [[package]] name = "fetch_unroll" version = "0.2.1" @@ -1205,6 +1214,17 @@ dependencies = [ "miniz_oxide 0.4.3", ] +[[package]] +name = "flume" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9e818efa7776f4dd7df0e542f877f7a5a87bddd6a1a10f59a7732b71ffb9d55" +dependencies = [ + "futures-core", + "futures-sink", + "spinning_top", +] + [[package]] name = "fnv" version = "1.0.7" @@ -1300,6 +1320,21 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb" +[[package]] +name = "futures-lite" +version = "1.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6c079abfac3ab269e2927ec048dabc89d009ebfdda6b8ee86624f30c689658" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + [[package]] name = "futures-macro" version = "0.3.8" @@ -1704,19 +1739,17 @@ dependencies = [ [[package]] name = "isahc" -version = "0.9.12" +version = "0.9.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "003be15733203fb6e7a926e4a23517b0dbc45e4ab3ead5bbc24c7ad84faae681" +checksum = "80aafab09693e9fa74b76ef207c55dc1cba5d9d5dc6dcc1b6a96d008a98000e9" dependencies = [ "bytes", - "crossbeam-channel", "crossbeam-utils 0.8.0", "curl", "curl-sys", "encoding_rs", - "futures-channel", - "futures-io", - "futures-util", + "flume", + "futures-lite", "http", "log", "mime", @@ -1725,6 +1758,8 @@ dependencies = [ "sluice", "tracing", "tracing-futures", + "url 2.2.0", + "waker-fn", ] [[package]] @@ -2471,6 +2506,12 @@ dependencies = [ "ttf-parser", ] +[[package]] +name = "parking" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" + [[package]] name = "parking_lot" version = "0.11.0" @@ -3264,6 +3305,15 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" +[[package]] +name = "spinning_top" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e529d73e80d64b5f2631f9035113347c578a1c9c7774b83a2b880788459ab36" +dependencies = [ + "lock_api", +] + [[package]] name = "spirv_cross" version = "0.22.0" @@ -3665,6 +3715,12 @@ dependencies = [ "libc", ] +[[package]] +name = "waker-fn" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + [[package]] name = "walkdir" version = "2.3.1" diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 6792d13e3..f53e34d27 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -23,7 +23,7 @@ webbrowser = "0.5.5" url = "2.2.0" clipboard = "0.5.0" dirs = "3.0" -isahc = "0.9.12" +isahc = "0.9.13" [target.'cfg(windows)'.dependencies] winapi = "0.3.9"