5.diff (4575B)
1 diff --git a/Cargo.lock b/Cargo.lock 2 index 9d60f98..b9dec18 100644 3 --- a/Cargo.lock 4 +++ b/Cargo.lock 5 @@ -586,7 +586,7 @@ dependencies = [ 6 "libc", 7 "log", 8 "wasi", 9 - "windows-sys", 10 + "windows-sys 0.36.1", 11 ] 12 13 [[package]] 14 @@ -955,9 +955,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 15 16 [[package]] 17 name = "tokio" 18 -version = "1.20.1" 19 +version = "1.26.0" 20 source = "registry+https://github.com/rust-lang/crates.io-index" 21 -checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 22 +checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 23 dependencies = [ 24 "autocfg", 25 "bytes", 26 @@ -965,10 +965,9 @@ dependencies = [ 27 "memchr", 28 "mio", 29 "num_cpus", 30 - "once_cell", 31 "pin-project-lite", 32 "socket2", 33 - "winapi", 34 + "windows-sys 0.45.0", 35 ] 36 37 [[package]] 38 @@ -1233,43 +1232,109 @@ version = "0.36.1" 39 source = "registry+https://github.com/rust-lang/crates.io-index" 40 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 41 dependencies = [ 42 - "windows_aarch64_msvc", 43 - "windows_i686_gnu", 44 - "windows_i686_msvc", 45 - "windows_x86_64_gnu", 46 - "windows_x86_64_msvc", 47 + "windows_aarch64_msvc 0.36.1", 48 + "windows_i686_gnu 0.36.1", 49 + "windows_i686_msvc 0.36.1", 50 + "windows_x86_64_gnu 0.36.1", 51 + "windows_x86_64_msvc 0.36.1", 52 +] 53 + 54 +[[package]] 55 +name = "windows-sys" 56 +version = "0.45.0" 57 +source = "registry+https://github.com/rust-lang/crates.io-index" 58 +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 59 +dependencies = [ 60 + "windows-targets", 61 +] 62 + 63 +[[package]] 64 +name = "windows-targets" 65 +version = "0.42.2" 66 +source = "registry+https://github.com/rust-lang/crates.io-index" 67 +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 68 +dependencies = [ 69 + "windows_aarch64_gnullvm", 70 + "windows_aarch64_msvc 0.42.2", 71 + "windows_i686_gnu 0.42.2", 72 + "windows_i686_msvc 0.42.2", 73 + "windows_x86_64_gnu 0.42.2", 74 + "windows_x86_64_gnullvm", 75 + "windows_x86_64_msvc 0.42.2", 76 ] 77 78 +[[package]] 79 +name = "windows_aarch64_gnullvm" 80 +version = "0.42.2" 81 +source = "registry+https://github.com/rust-lang/crates.io-index" 82 +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 83 + 84 [[package]] 85 name = "windows_aarch64_msvc" 86 version = "0.36.1" 87 source = "registry+https://github.com/rust-lang/crates.io-index" 88 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 89 90 +[[package]] 91 +name = "windows_aarch64_msvc" 92 +version = "0.42.2" 93 +source = "registry+https://github.com/rust-lang/crates.io-index" 94 +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 95 + 96 [[package]] 97 name = "windows_i686_gnu" 98 version = "0.36.1" 99 source = "registry+https://github.com/rust-lang/crates.io-index" 100 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 101 102 +[[package]] 103 +name = "windows_i686_gnu" 104 +version = "0.42.2" 105 +source = "registry+https://github.com/rust-lang/crates.io-index" 106 +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 107 + 108 [[package]] 109 name = "windows_i686_msvc" 110 version = "0.36.1" 111 source = "registry+https://github.com/rust-lang/crates.io-index" 112 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 113 114 +[[package]] 115 +name = "windows_i686_msvc" 116 +version = "0.42.2" 117 +source = "registry+https://github.com/rust-lang/crates.io-index" 118 +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 119 + 120 [[package]] 121 name = "windows_x86_64_gnu" 122 version = "0.36.1" 123 source = "registry+https://github.com/rust-lang/crates.io-index" 124 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 125 126 +[[package]] 127 +name = "windows_x86_64_gnu" 128 +version = "0.42.2" 129 +source = "registry+https://github.com/rust-lang/crates.io-index" 130 +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 131 + 132 +[[package]] 133 +name = "windows_x86_64_gnullvm" 134 +version = "0.42.2" 135 +source = "registry+https://github.com/rust-lang/crates.io-index" 136 +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 137 + 138 [[package]] 139 name = "windows_x86_64_msvc" 140 version = "0.36.1" 141 source = "registry+https://github.com/rust-lang/crates.io-index" 142 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 143 144 +[[package]] 145 +name = "windows_x86_64_msvc" 146 +version = "0.42.2" 147 +source = "registry+https://github.com/rust-lang/crates.io-index" 148 +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 149 + 150 [[package]] 151 name = "winreg" 152 version = "0.10.1"