martin: patch to work with rust 1.64

+367 -4
+9 -4
pkgs/servers/geospatial/martin/default.nix
··· 1 - { lib, stdenv, rustPlatform, fetchFromGitHub, Security }: 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, fetchpatch, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "martin"; ··· 8 8 owner = "urbica"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1i9zhmjkgid4s90n52wqmrl3lwswcaxd6d47ssycgjl1nv0jla4k"; 11 + hash = "sha256-kygqwbaByse81oc007piXHM6aK6Yi2JB0qTFN2WFP8U="; 12 12 }; 13 13 14 - cargoSha256 = "1jgl8s6h4pqhn189swrhn896kw1rkmqpf7dq52ry2rdci80g02nq"; 14 + cargoPatches = [ 15 + # Remove after a new release, tracked by https://github.com/maplibre/martin/issues/410. 16 + ./update-socket2-for-rust-1.64.patch 17 + ]; 15 18 16 - buildInputs = with stdenv; lib.optional isDarwin Security; 19 + cargoHash = "sha256-oevyr1P0uzHbpWCYQ1raqA42HI2KLl2IYcm1D2PeKOo="; 20 + 21 + buildInputs = lib.optional stdenv.isDarwin Security; 17 22 18 23 doCheck = false; 19 24
+358
pkgs/servers/geospatial/martin/update-socket2-for-rust-1.64.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index 8c90ecb..13c3149 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -305,7 +305,7 @@ name = "atty" 6 + version = "0.2.13" 7 + source = "registry+https://github.com/rust-lang/crates.io-index" 8 + dependencies = [ 9 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 10 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 11 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 12 + ] 13 + 14 + @@ -343,7 +343,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 15 + dependencies = [ 16 + "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", 17 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 18 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 19 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 20 + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", 21 + ] 22 + 23 + @@ -353,7 +353,7 @@ version = "0.1.32" 24 + source = "registry+https://github.com/rust-lang/crates.io-index" 25 + dependencies = [ 26 + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", 27 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 28 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 29 + ] 30 + 31 + [[package]] 32 + @@ -393,7 +393,7 @@ version = "0.3.2" 33 + source = "registry+https://github.com/rust-lang/crates.io-index" 34 + dependencies = [ 35 + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", 36 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 37 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 38 + ] 39 + 40 + [[package]] 41 + @@ -402,7 +402,7 @@ version = "0.3.2" 42 + source = "registry+https://github.com/rust-lang/crates.io-index" 43 + dependencies = [ 44 + "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 45 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 46 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 47 + ] 48 + 49 + [[package]] 50 + @@ -458,12 +458,17 @@ name = "cfg-if" 51 + version = "0.1.10" 52 + source = "registry+https://github.com/rust-lang/crates.io-index" 53 + 54 + +[[package]] 55 + +name = "cfg-if" 56 + +version = "1.0.0" 57 + +source = "registry+https://github.com/rust-lang/crates.io-index" 58 + + 59 + [[package]] 60 + name = "chrono" 61 + version = "0.4.9" 62 + source = "registry+https://github.com/rust-lang/crates.io-index" 63 + dependencies = [ 64 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 65 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 66 + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 67 + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 68 + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 69 + @@ -734,7 +739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 70 + dependencies = [ 71 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 72 + "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 73 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 74 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 75 + "miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 76 + "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 77 + ] 78 + @@ -782,7 +787,7 @@ version = "0.1.13" 79 + source = "registry+https://github.com/rust-lang/crates.io-index" 80 + dependencies = [ 81 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 82 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 83 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 84 + "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 85 + ] 86 + 87 + @@ -832,7 +837,7 @@ name = "hostname" 88 + version = "0.1.5" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + dependencies = [ 91 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 92 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 93 + "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 94 + ] 95 + 96 + @@ -892,7 +897,7 @@ name = "iovec" 97 + version = "0.1.4" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + dependencies = [ 100 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 101 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 102 + ] 103 + 104 + [[package]] 105 + @@ -900,7 +905,7 @@ name = "ipconfig" 106 + version = "0.2.1" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + dependencies = [ 109 + - "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 110 + + "socket2 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 111 + "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 112 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 113 + "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 114 + @@ -940,7 +945,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 115 + 116 + [[package]] 117 + name = "libc" 118 + -version = "0.2.65" 119 + +version = "0.2.134" 120 + source = "registry+https://github.com/rust-lang/crates.io-index" 121 + 122 + [[package]] 123 + @@ -1019,7 +1024,7 @@ name = "memchr" 124 + version = "1.0.2" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + dependencies = [ 127 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 128 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 129 + ] 130 + 131 + [[package]] 132 + @@ -1027,7 +1032,7 @@ name = "memchr" 133 + version = "2.2.1" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + dependencies = [ 136 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 137 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 138 + ] 139 + 140 + [[package]] 141 + @@ -1049,7 +1054,7 @@ version = "0.1.12" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + dependencies = [ 144 + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", 145 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 146 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 147 + ] 148 + 149 + [[package]] 150 + @@ -1069,7 +1074,7 @@ dependencies = [ 151 + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 152 + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 153 + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 154 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 155 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 156 + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 157 + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 158 + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 159 + @@ -1083,7 +1088,7 @@ version = "0.6.7" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + dependencies = [ 162 + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 163 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 164 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 165 + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 166 + ] 167 + 168 + @@ -1104,7 +1109,7 @@ version = "0.2.33" 169 + source = "registry+https://github.com/rust-lang/crates.io-index" 170 + dependencies = [ 171 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 172 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 173 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 174 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 175 + ] 176 + 177 + @@ -1135,7 +1140,7 @@ name = "num_cpus" 178 + version = "1.10.1" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + dependencies = [ 181 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 182 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 183 + ] 184 + 185 + [[package]] 186 + @@ -1165,7 +1170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 187 + dependencies = [ 188 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 189 + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 190 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 191 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 192 + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 193 + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 194 + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 195 + @@ -1180,7 +1185,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 196 + dependencies = [ 197 + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 198 + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 199 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 200 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 201 + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 202 + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 203 + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 204 + @@ -1223,7 +1228,7 @@ dependencies = [ 205 + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 206 + "postgres-protocol 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 207 + "postgres-shared 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 208 + - "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 209 + + "socket2 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 210 + ] 211 + 212 + [[package]] 213 + @@ -1325,7 +1330,7 @@ name = "rand" 214 + version = "0.3.23" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + dependencies = [ 217 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 218 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 219 + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 220 + ] 221 + 222 + @@ -1335,7 +1340,7 @@ version = "0.4.6" 223 + source = "registry+https://github.com/rust-lang/crates.io-index" 224 + dependencies = [ 225 + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 226 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 227 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 228 + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 229 + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 230 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 231 + @@ -1347,7 +1352,7 @@ version = "0.6.5" 232 + source = "registry+https://github.com/rust-lang/crates.io-index" 233 + dependencies = [ 234 + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 235 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 236 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 237 + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 238 + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 239 + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 240 + @@ -1365,7 +1370,7 @@ version = "0.7.2" 241 + source = "registry+https://github.com/rust-lang/crates.io-index" 242 + dependencies = [ 243 + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", 244 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 245 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 246 + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 247 + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 248 + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 249 + @@ -1439,7 +1444,7 @@ name = "rand_jitter" 250 + version = "0.1.4" 251 + source = "registry+https://github.com/rust-lang/crates.io-index" 252 + dependencies = [ 253 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 254 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 255 + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 256 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 257 + ] 258 + @@ -1451,7 +1456,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 259 + dependencies = [ 260 + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 261 + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 262 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 263 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 264 + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 265 + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 266 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 267 + @@ -1687,7 +1692,7 @@ name = "signal-hook" 268 + version = "0.1.10" 269 + source = "registry+https://github.com/rust-lang/crates.io-index" 270 + dependencies = [ 271 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 272 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 273 + "signal-hook-registry 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 274 + ] 275 + 276 + @@ -1697,7 +1702,7 @@ version = "1.1.1" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + dependencies = [ 279 + "arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 280 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 281 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 282 + ] 283 + 284 + [[package]] 285 + @@ -1717,12 +1722,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 286 + 287 + [[package]] 288 + name = "socket2" 289 + -version = "0.3.11" 290 + +version = "0.3.19" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + dependencies = [ 293 + - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 294 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 295 + - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 296 + + "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 297 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 298 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 299 + ] 300 + 301 + @@ -1825,7 +1829,7 @@ name = "time" 302 + version = "0.1.42" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + dependencies = [ 305 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 306 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 307 + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 308 + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 309 + ] 310 + @@ -1901,7 +1905,7 @@ version = "0.2.7" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + dependencies = [ 313 + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 314 + - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", 315 + + "libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)", 316 + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 317 + "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", 318 + "signal-hook 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 319 + @@ -1972,7 +1976,7 @@ dependencies = [ 320 + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 321 + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 322 + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 323 + - "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 324 + + "socket2 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 325 + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 326 + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 327 + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 328 + @@ -2200,6 +2204,7 @@ dependencies = [ 329 + "checksum cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427" 330 + "checksum cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)" = "0213d356d3c4ea2c18c40b037c3be23cd639825c18f25ee670ac7813beeef99c" 331 + "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 332 + +"checksum cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 333 + "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" 334 + "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" 335 + "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 336 + @@ -2256,7 +2261,7 @@ dependencies = [ 337 + "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 338 + "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" 339 + "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 340 + -"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" 341 + +"checksum libc 0.2.134 (registry+https://github.com/rust-lang/crates.io-index)" = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" 342 + "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" 343 + "checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" 344 + "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" 345 + @@ -2344,7 +2349,7 @@ dependencies = [ 346 + "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" 347 + "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 348 + "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" 349 + -"checksum socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e8b74de517221a2cb01a53349cf54182acdc31a074727d3079068448c0676d85" 350 + +"checksum socket2 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)" = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" 351 + "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" 352 + "checksum stringprep 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 353 + "checksum strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "032c03039aae92b350aad2e3779c352e104d919cb192ba2fabbd7b831ce4f0f6" 354 + @@ -2393,3 +2398,4 @@ dependencies = [ 355 + "checksum winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7daf138b6b14196e3830a588acf1e86966c694d3e8fb026fb105b8b5dca07e6e" 356 + "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 357 + "checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d" 358 + +