lol

dnspeep: use fetchCargoVendor

+2 -675
-669
pkgs/by-name/dn/dnspeep/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "aho-corasick" 7 - version = "0.7.15" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" 10 - dependencies = [ 11 - "memchr", 12 - ] 13 - 14 - [[package]] 15 - name = "autocfg" 16 - version = "1.0.1" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 19 - 20 - [[package]] 21 - name = "base64" 22 - version = "0.13.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 25 - 26 - [[package]] 27 - name = "bitflags" 28 - version = "1.2.1" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 31 - 32 - [[package]] 33 - name = "byteorder" 34 - version = "1.4.3" 35 - source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 37 - 38 - [[package]] 39 - name = "bytes" 40 - version = "0.5.6" 41 - source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" 43 - 44 - [[package]] 45 - name = "bytes" 46 - version = "1.1.0" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 49 - 50 - [[package]] 51 - name = "cfg-if" 52 - version = "0.1.10" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 55 - 56 - [[package]] 57 - name = "cfg-if" 58 - version = "1.0.0" 59 - source = "registry+https://github.com/rust-lang/crates.io-index" 60 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 61 - 62 - [[package]] 63 - name = "chrono" 64 - version = "0.4.19" 65 - source = "registry+https://github.com/rust-lang/crates.io-index" 66 - checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 67 - dependencies = [ 68 - "libc", 69 - "num-integer", 70 - "num-traits", 71 - "time", 72 - "winapi 0.3.9", 73 - ] 74 - 75 - [[package]] 76 - name = "dns-message-parser" 77 - version = "0.6.0" 78 - source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "b393503f9263e08ba3efe0a3578cdde90d6da5ae1af232cc338640670451c992" 80 - dependencies = [ 81 - "base64", 82 - "bytes 1.1.0", 83 - "hex", 84 - "thiserror", 85 - ] 86 - 87 - [[package]] 88 - name = "dnspeep" 89 - version = "0.1.3" 90 - dependencies = [ 91 - "bytes 1.1.0", 92 - "chrono", 93 - "dns-message-parser", 94 - "etherparse", 95 - "eyre", 96 - "futures", 97 - "getopts", 98 - "hex", 99 - "libc", 100 - "pcap", 101 - "tokio", 102 - ] 103 - 104 - [[package]] 105 - name = "etherparse" 106 - version = "0.9.0" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "2fa20922281f9ee5ffcda45e80d56085829279f1270f79fbabc39809a4354807" 109 - dependencies = [ 110 - "byteorder", 111 - ] 112 - 113 - [[package]] 114 - name = "eyre" 115 - version = "0.6.5" 116 - source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "221239d1d5ea86bf5d6f91c9d6bc3646ffe471b08ff9b0f91c44f115ac969d2b" 118 - dependencies = [ 119 - "indenter", 120 - "once_cell", 121 - ] 122 - 123 - [[package]] 124 - name = "fnv" 125 - version = "1.0.7" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 128 - 129 - [[package]] 130 - name = "fuchsia-zircon" 131 - version = "0.3.3" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 134 - dependencies = [ 135 - "bitflags", 136 - "fuchsia-zircon-sys", 137 - ] 138 - 139 - [[package]] 140 - name = "fuchsia-zircon-sys" 141 - version = "0.3.3" 142 - source = "registry+https://github.com/rust-lang/crates.io-index" 143 - checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 144 - 145 - [[package]] 146 - name = "futures" 147 - version = "0.3.13" 148 - source = "registry+https://github.com/rust-lang/crates.io-index" 149 - checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1" 150 - dependencies = [ 151 - "futures-channel", 152 - "futures-core", 153 - "futures-executor", 154 - "futures-io", 155 - "futures-sink", 156 - "futures-task", 157 - "futures-util", 158 - ] 159 - 160 - [[package]] 161 - name = "futures-channel" 162 - version = "0.3.13" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939" 165 - dependencies = [ 166 - "futures-core", 167 - "futures-sink", 168 - ] 169 - 170 - [[package]] 171 - name = "futures-core" 172 - version = "0.3.13" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94" 175 - 176 - [[package]] 177 - name = "futures-executor" 178 - version = "0.3.13" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "891a4b7b96d84d5940084b2a37632dd65deeae662c114ceaa2c879629c9c0ad1" 181 - dependencies = [ 182 - "futures-core", 183 - "futures-task", 184 - "futures-util", 185 - ] 186 - 187 - [[package]] 188 - name = "futures-io" 189 - version = "0.3.13" 190 - source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59" 192 - 193 - [[package]] 194 - name = "futures-macro" 195 - version = "0.3.13" 196 - source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "ea405816a5139fb39af82c2beb921d52143f556038378d6db21183a5c37fbfb7" 198 - dependencies = [ 199 - "proc-macro-hack", 200 - "proc-macro2", 201 - "quote", 202 - "syn", 203 - ] 204 - 205 - [[package]] 206 - name = "futures-sink" 207 - version = "0.3.13" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3" 210 - 211 - [[package]] 212 - name = "futures-task" 213 - version = "0.3.13" 214 - source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80" 216 - 217 - [[package]] 218 - name = "futures-util" 219 - version = "0.3.13" 220 - source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1" 222 - dependencies = [ 223 - "futures-channel", 224 - "futures-core", 225 - "futures-io", 226 - "futures-macro", 227 - "futures-sink", 228 - "futures-task", 229 - "memchr", 230 - "pin-project-lite 0.2.6", 231 - "pin-utils", 232 - "proc-macro-hack", 233 - "proc-macro-nested", 234 - "slab", 235 - ] 236 - 237 - [[package]] 238 - name = "getopts" 239 - version = "0.2.21" 240 - source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 242 - dependencies = [ 243 - "unicode-width", 244 - ] 245 - 246 - [[package]] 247 - name = "hermit-abi" 248 - version = "0.1.18" 249 - source = "registry+https://github.com/rust-lang/crates.io-index" 250 - checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" 251 - dependencies = [ 252 - "libc", 253 - ] 254 - 255 - [[package]] 256 - name = "hex" 257 - version = "0.4.3" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 260 - 261 - [[package]] 262 - name = "indenter" 263 - version = "0.3.3" 264 - source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 266 - 267 - [[package]] 268 - name = "iovec" 269 - version = "0.1.4" 270 - source = "registry+https://github.com/rust-lang/crates.io-index" 271 - checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 272 - dependencies = [ 273 - "libc", 274 - ] 275 - 276 - [[package]] 277 - name = "kernel32-sys" 278 - version = "0.2.2" 279 - source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 281 - dependencies = [ 282 - "winapi 0.2.8", 283 - "winapi-build", 284 - ] 285 - 286 - [[package]] 287 - name = "lazy_static" 288 - version = "1.4.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 291 - 292 - [[package]] 293 - name = "libc" 294 - version = "0.2.91" 295 - source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7" 297 - 298 - [[package]] 299 - name = "libloading" 300 - version = "0.6.7" 301 - source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" 303 - dependencies = [ 304 - "cfg-if 1.0.0", 305 - "winapi 0.3.9", 306 - ] 307 - 308 - [[package]] 309 - name = "log" 310 - version = "0.4.14" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 313 - dependencies = [ 314 - "cfg-if 1.0.0", 315 - ] 316 - 317 - [[package]] 318 - name = "memchr" 319 - version = "2.3.4" 320 - source = "registry+https://github.com/rust-lang/crates.io-index" 321 - checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 322 - 323 - [[package]] 324 - name = "mio" 325 - version = "0.6.23" 326 - source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 328 - dependencies = [ 329 - "cfg-if 0.1.10", 330 - "fuchsia-zircon", 331 - "fuchsia-zircon-sys", 332 - "iovec", 333 - "kernel32-sys", 334 - "libc", 335 - "log", 336 - "miow 0.2.2", 337 - "net2", 338 - "slab", 339 - "winapi 0.2.8", 340 - ] 341 - 342 - [[package]] 343 - name = "mio-named-pipes" 344 - version = "0.1.7" 345 - source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656" 347 - dependencies = [ 348 - "log", 349 - "mio", 350 - "miow 0.3.7", 351 - "winapi 0.3.9", 352 - ] 353 - 354 - [[package]] 355 - name = "mio-uds" 356 - version = "0.6.8" 357 - source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" 359 - dependencies = [ 360 - "iovec", 361 - "libc", 362 - "mio", 363 - ] 364 - 365 - [[package]] 366 - name = "miow" 367 - version = "0.2.2" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 370 - dependencies = [ 371 - "kernel32-sys", 372 - "net2", 373 - "winapi 0.2.8", 374 - "ws2_32-sys", 375 - ] 376 - 377 - [[package]] 378 - name = "miow" 379 - version = "0.3.7" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 382 - dependencies = [ 383 - "winapi 0.3.9", 384 - ] 385 - 386 - [[package]] 387 - name = "net2" 388 - version = "0.2.37" 389 - source = "registry+https://github.com/rust-lang/crates.io-index" 390 - checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" 391 - dependencies = [ 392 - "cfg-if 0.1.10", 393 - "libc", 394 - "winapi 0.3.9", 395 - ] 396 - 397 - [[package]] 398 - name = "num-integer" 399 - version = "0.1.44" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 402 - dependencies = [ 403 - "autocfg", 404 - "num-traits", 405 - ] 406 - 407 - [[package]] 408 - name = "num-traits" 409 - version = "0.2.14" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 412 - dependencies = [ 413 - "autocfg", 414 - ] 415 - 416 - [[package]] 417 - name = "num_cpus" 418 - version = "1.13.0" 419 - source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 421 - dependencies = [ 422 - "hermit-abi", 423 - "libc", 424 - ] 425 - 426 - [[package]] 427 - name = "once_cell" 428 - version = "1.7.2" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" 431 - 432 - [[package]] 433 - name = "pcap" 434 - version = "0.8.1" 435 - source = "git+https://github.com/jvns/pcap#ae2aa7f501ae5bb7069155cf7c5c700b7482681d" 436 - dependencies = [ 437 - "futures", 438 - "libc", 439 - "libloading", 440 - "mio", 441 - "regex", 442 - "tokio", 443 - "widestring", 444 - ] 445 - 446 - [[package]] 447 - name = "pin-project-lite" 448 - version = "0.1.12" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" 451 - 452 - [[package]] 453 - name = "pin-project-lite" 454 - version = "0.2.6" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905" 457 - 458 - [[package]] 459 - name = "pin-utils" 460 - version = "0.1.0" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 463 - 464 - [[package]] 465 - name = "proc-macro-hack" 466 - version = "0.5.19" 467 - source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 469 - 470 - [[package]] 471 - name = "proc-macro-nested" 472 - version = "0.1.7" 473 - source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" 475 - 476 - [[package]] 477 - name = "proc-macro2" 478 - version = "1.0.24" 479 - source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" 481 - dependencies = [ 482 - "unicode-xid", 483 - ] 484 - 485 - [[package]] 486 - name = "quote" 487 - version = "1.0.9" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 490 - dependencies = [ 491 - "proc-macro2", 492 - ] 493 - 494 - [[package]] 495 - name = "regex" 496 - version = "1.4.5" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19" 499 - dependencies = [ 500 - "aho-corasick", 501 - "memchr", 502 - "regex-syntax", 503 - ] 504 - 505 - [[package]] 506 - name = "regex-syntax" 507 - version = "0.6.23" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548" 510 - 511 - [[package]] 512 - name = "signal-hook-registry" 513 - version = "1.3.0" 514 - source = "registry+https://github.com/rust-lang/crates.io-index" 515 - checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6" 516 - dependencies = [ 517 - "libc", 518 - ] 519 - 520 - [[package]] 521 - name = "slab" 522 - version = "0.4.2" 523 - source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 525 - 526 - [[package]] 527 - name = "syn" 528 - version = "1.0.65" 529 - source = "registry+https://github.com/rust-lang/crates.io-index" 530 - checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663" 531 - dependencies = [ 532 - "proc-macro2", 533 - "quote", 534 - "unicode-xid", 535 - ] 536 - 537 - [[package]] 538 - name = "thiserror" 539 - version = "1.0.30" 540 - source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 542 - dependencies = [ 543 - "thiserror-impl", 544 - ] 545 - 546 - [[package]] 547 - name = "thiserror-impl" 548 - version = "1.0.30" 549 - source = "registry+https://github.com/rust-lang/crates.io-index" 550 - checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 551 - dependencies = [ 552 - "proc-macro2", 553 - "quote", 554 - "syn", 555 - ] 556 - 557 - [[package]] 558 - name = "time" 559 - version = "0.1.44" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 562 - dependencies = [ 563 - "libc", 564 - "wasi", 565 - "winapi 0.3.9", 566 - ] 567 - 568 - [[package]] 569 - name = "tokio" 570 - version = "0.2.25" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092" 573 - dependencies = [ 574 - "bytes 0.5.6", 575 - "fnv", 576 - "futures-core", 577 - "iovec", 578 - "lazy_static", 579 - "libc", 580 - "memchr", 581 - "mio", 582 - "mio-named-pipes", 583 - "mio-uds", 584 - "num_cpus", 585 - "pin-project-lite 0.1.12", 586 - "signal-hook-registry", 587 - "slab", 588 - "tokio-macros", 589 - "winapi 0.3.9", 590 - ] 591 - 592 - [[package]] 593 - name = "tokio-macros" 594 - version = "0.2.6" 595 - source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a" 597 - dependencies = [ 598 - "proc-macro2", 599 - "quote", 600 - "syn", 601 - ] 602 - 603 - [[package]] 604 - name = "unicode-width" 605 - version = "0.1.8" 606 - source = "registry+https://github.com/rust-lang/crates.io-index" 607 - checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" 608 - 609 - [[package]] 610 - name = "unicode-xid" 611 - version = "0.2.1" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 614 - 615 - [[package]] 616 - name = "wasi" 617 - version = "0.10.0+wasi-snapshot-preview1" 618 - source = "registry+https://github.com/rust-lang/crates.io-index" 619 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 620 - 621 - [[package]] 622 - name = "widestring" 623 - version = "0.2.2" 624 - source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "7157704c2e12e3d2189c507b7482c52820a16dfa4465ba91add92f266667cadb" 626 - 627 - [[package]] 628 - name = "winapi" 629 - version = "0.2.8" 630 - source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 632 - 633 - [[package]] 634 - name = "winapi" 635 - version = "0.3.9" 636 - source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 638 - dependencies = [ 639 - "winapi-i686-pc-windows-gnu", 640 - "winapi-x86_64-pc-windows-gnu", 641 - ] 642 - 643 - [[package]] 644 - name = "winapi-build" 645 - version = "0.1.1" 646 - source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 648 - 649 - [[package]] 650 - name = "winapi-i686-pc-windows-gnu" 651 - version = "0.4.0" 652 - source = "registry+https://github.com/rust-lang/crates.io-index" 653 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 654 - 655 - [[package]] 656 - name = "winapi-x86_64-pc-windows-gnu" 657 - version = "0.4.0" 658 - source = "registry+https://github.com/rust-lang/crates.io-index" 659 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 660 - 661 - [[package]] 662 - name = "ws2_32-sys" 663 - version = "0.2.1" 664 - source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 666 - dependencies = [ 667 - "winapi 0.2.8", 668 - "winapi-build", 669 - ]
+2 -6
pkgs/by-name/dn/dnspeep/package.nix
··· 11 11 sha256 = "sha256-QpUbHiMDQFRCTVyjrO9lfQQ62Z3qanv0j+8eEXjE3n4="; 12 12 }; 13 13 14 - cargoLock = { 15 - lockFile = ./Cargo.lock; 16 - outputHashes = { 17 - "pcap-0.8.1" = "sha256-baoHK3Q+5Qp9ccGqDGd5K5q87c5JufpNJHRdBin0zto="; 18 - }; 19 - }; 14 + useFetchCargoVendor = true; 15 + cargoHash = "sha256-tZlh7+END6oOy3uWOrjle+nwqFhMU6bbXmr4hdt6gqY="; 20 16 21 17 LIBPCAP_LIBDIR = lib.makeLibraryPath [ libpcap ]; 22 18 LIBPCAP_VER = libpcap.version;