diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-04-02 19:54:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-02 19:54:40 +0200 |
| commit | 6c25b5135dfa6d9be35f6993e4b43d442977eff9 (patch) | |
| tree | c46af87ac21b1b99ea7a948dfe02894afeb75848 /Cargo.lock | |
| parent | c0ee027d346191238c01d9fd35f45cc695bd1ae6 (diff) | |
chore: update tokio, tokio-util and libc dependencies (#14174)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 61 |
1 files changed, 41 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock index 766c7edf4..ce2bcd230 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -803,7 +803,7 @@ dependencies = [ "text-size", "text_lines", "tokio", - "tokio-util", + "tokio-util 0.7.0", "trust-dns-client", "trust-dns-server", "typed-arena", @@ -941,7 +941,7 @@ dependencies = [ "serde", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.0", ] [[package]] @@ -995,7 +995,7 @@ dependencies = [ "ring", "serde", "tokio", - "tokio-util", + "tokio-util 0.7.0", ] [[package]] @@ -1023,7 +1023,7 @@ dependencies = [ "deno_tls", "log", "serde", - "socket2 0.4.2", + "socket2 0.4.4", "tokio", "trust-dns-proto", "trust-dns-resolver", @@ -1855,7 +1855,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tracing", ] @@ -1979,7 +1979,7 @@ dependencies = [ "httpdate", "itoa 0.4.8", "pin-project-lite", - "socket2 0.4.2", + "socket2 0.4.4", "tokio", "tower-service", "tracing", @@ -2278,9 +2278,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.106" +version = "0.2.121" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673" +checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f" [[package]] name = "libffi" @@ -2396,7 +2396,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tower-service", "twoway", ] @@ -2490,14 +2490,15 @@ dependencies = [ [[package]] name = "mio" -version = "0.7.14" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" +checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" dependencies = [ "libc", "log", "miow", "ntapi", + "wasi 0.11.0+wasi-snapshot-preview1", "winapi 0.3.9", ] @@ -2587,9 +2588,9 @@ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" [[package]] name = "notify" -version = "5.0.0-pre.12" +version = "5.0.0-pre.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20a629259bb2c87a884bb76f6086c8637919de6d074754341c12e5dd3aed6326" +checksum = "d13c22db70a63592e098fb51735bab36646821e6389a0ba171f3549facdf0b74" dependencies = [ "bitflags", "crossbeam-channel", @@ -3355,7 +3356,7 @@ dependencies = [ "serde_urlencoded", "tokio", "tokio-rustls", - "tokio-util", + "tokio-util 0.6.9", "url", "wasm-bindgen", "wasm-bindgen-futures", @@ -3829,9 +3830,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516" +checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" dependencies = [ "libc", "winapi 0.3.9", @@ -4540,20 +4541,20 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.14.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144" +checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" dependencies = [ - "autocfg 1.0.1", "bytes", "libc", "memchr", "mio", "num_cpus", "once_cell", - "parking_lot 0.11.2", + "parking_lot 0.12.0", "pin-project-lite", "signal-hook-registry", + "socket2 0.4.4", "tokio-macros", "winapi 0.3.9", ] @@ -4622,6 +4623,20 @@ dependencies = [ ] [[package]] +name = "tokio-util" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64910e1b9c1901aaf5375561e35b9c057d95ff41a44ede043a03e09279eabaf1" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "log", + "pin-project-lite", + "tokio", +] + +[[package]] name = "toml" version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -5052,6 +5067,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" [[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] name = "wasm-bindgen" version = "0.2.78" source = "registry+https://github.com/rust-lang/crates.io-index" |
