1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "0.7.15" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "android_log-sys" 16version = "0.2.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e" 19 20[[package]] 21name = "android_logger" 22version = "0.10.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "d9ed09b18365ed295d722d0b5ed59c01b79a826ff2d2a8f73d5ecca8e6fb2f66" 25dependencies = [ 26 "android_log-sys", 27 "env_logger", 28 "lazy_static", 29 "log", 30] 31 32[[package]] 33name = "argh" 34version = "0.1.10" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "ab257697eb9496bf75526f0217b5ed64636a9cfafa78b8365c71bd283fcef93e" 37dependencies = [ 38 "argh_derive", 39 "argh_shared", 40] 41 42[[package]] 43name = "argh_derive" 44version = "0.1.10" 45source = "registry+https://github.com/rust-lang/crates.io-index" 46checksum = "b382dbd3288e053331f03399e1db106c9fb0d8562ad62cb04859ae926f324fa6" 47dependencies = [ 48 "argh_shared", 49 "proc-macro2", 50 "quote", 51 "syn", 52] 53 54[[package]] 55name = "argh_shared" 56version = "0.1.12" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531" 59dependencies = [ 60 "serde", 61] 62 63[[package]] 64name = "atty" 65version = "0.2.14" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 68dependencies = [ 69 "hermit-abi 0.1.19", 70 "libc", 71 "winapi 0.3.9", 72] 73 74[[package]] 75name = "autocfg" 76version = "1.1.0" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 79 80[[package]] 81name = "bincode" 82version = "0.9.0" 83source = "registry+https://github.com/rust-lang/crates.io-index" 84checksum = "b92615d57e4048e480bd7e3c2d7f6ec252819fffec95efbc30ec7c68744aa66c" 85dependencies = [ 86 "byteorder", 87 "serde", 88] 89 90[[package]] 91name = "bitflags" 92version = "2.6.0" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 95 96[[package]] 97name = "bstr" 98version = "0.2.15" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d" 101dependencies = [ 102 "lazy_static", 103 "memchr", 104 "regex-automata", 105 "serde", 106] 107 108[[package]] 109name = "byteorder" 110version = "1.5.0" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 113 114[[package]] 115name = "cfg-if" 116version = "1.0.0" 117source = "registry+https://github.com/rust-lang/crates.io-index" 118checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 119 120[[package]] 121name = "cfg_aliases" 122version = "0.1.1" 123source = "registry+https://github.com/rust-lang/crates.io-index" 124checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 125 126[[package]] 127name = "chrono" 128version = "0.4.19" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 131dependencies = [ 132 "libc", 133 "num-integer", 134 "num-traits", 135 "serde", 136 "time", 137 "winapi 0.3.9", 138] 139 140[[package]] 141name = "crc32fast" 142version = "1.3.2" 143source = "registry+https://github.com/rust-lang/crates.io-index" 144checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 145dependencies = [ 146 "cfg-if", 147] 148 149[[package]] 150name = "crossbeam-channel" 151version = "0.5.11" 152source = "registry+https://github.com/rust-lang/crates.io-index" 153checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 154dependencies = [ 155 "crossbeam-utils", 156] 157 158[[package]] 159name = "crossbeam-deque" 160version = "0.8.5" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 163dependencies = [ 164 "crossbeam-epoch", 165 "crossbeam-utils", 166] 167 168[[package]] 169name = "crossbeam-epoch" 170version = "0.9.18" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 173dependencies = [ 174 "crossbeam-utils", 175] 176 177[[package]] 178name = "crossbeam-utils" 179version = "0.8.19" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 182 183[[package]] 184name = "csv" 185version = "1.1.6" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 188dependencies = [ 189 "bstr", 190 "csv-core", 191 "itoa", 192 "ryu", 193 "serde", 194] 195 196[[package]] 197name = "csv-core" 198version = "0.1.11" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 201dependencies = [ 202 "memchr", 203] 204 205[[package]] 206name = "either" 207version = "1.9.0" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 210 211[[package]] 212name = "env_logger" 213version = "0.8.4" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 216dependencies = [ 217 "atty", 218 "humantime", 219 "log", 220 "regex", 221 "termcolor", 222] 223 224[[package]] 225name = "fuchsia-cprng" 226version = "0.1.1" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 229 230[[package]] 231name = "getrandom" 232version = "0.2.12" 233source = "registry+https://github.com/rust-lang/crates.io-index" 234checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 235dependencies = [ 236 "cfg-if", 237 "libc", 238 "wasi 0.11.0+wasi-snapshot-preview1", 239] 240 241[[package]] 242name = "half" 243version = "1.8.2" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 246 247[[package]] 248name = "hermit-abi" 249version = "0.1.19" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 252dependencies = [ 253 "libc", 254] 255 256[[package]] 257name = "hermit-abi" 258version = "0.3.4" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 261 262[[package]] 263name = "humantime" 264version = "2.1.0" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 267 268[[package]] 269name = "itoa" 270version = "0.4.8" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 273 274[[package]] 275name = "kernel32-sys" 276version = "0.2.2" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 279dependencies = [ 280 "winapi 0.2.8", 281 "winapi-build", 282] 283 284[[package]] 285name = "lazy_static" 286version = "1.4.0" 287source = "registry+https://github.com/rust-lang/crates.io-index" 288checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 289 290[[package]] 291name = "libc" 292version = "0.2.162" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398" 295 296[[package]] 297name = "linked-hash-map" 298version = "0.5.6" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 301 302[[package]] 303name = "log" 304version = "0.4.14" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 307dependencies = [ 308 "cfg-if", 309] 310 311[[package]] 312name = "lru-cache" 313version = "0.1.2" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 316dependencies = [ 317 "linked-hash-map", 318] 319 320[[package]] 321name = "memchr" 322version = "2.3.4" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 325 326[[package]] 327name = "nix" 328version = "0.28.0" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 331dependencies = [ 332 "bitflags", 333 "cfg-if", 334 "cfg_aliases", 335 "libc", 336] 337 338[[package]] 339name = "num-integer" 340version = "0.1.45" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 343dependencies = [ 344 "autocfg", 345 "num-traits", 346] 347 348[[package]] 349name = "num-traits" 350version = "0.2.17" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 353dependencies = [ 354 "autocfg", 355] 356 357[[package]] 358name = "num_cpus" 359version = "1.16.0" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 362dependencies = [ 363 "hermit-abi 0.3.4", 364 "libc", 365] 366 367[[package]] 368name = "ppv-lite86" 369version = "0.2.17" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 372 373[[package]] 374name = "prefetch" 375version = "0.1.0" 376dependencies = [ 377 "android_logger", 378 "argh", 379 "bincode", 380 "chrono", 381 "crc32fast", 382 "csv", 383 "env_logger", 384 "libc", 385 "log", 386 "lru-cache", 387 "memchr", 388 "nix", 389 "proc-macro2", 390 "quote", 391 "rand 0.8.5", 392 "rayon", 393 "rayon-core", 394 "regex", 395 "serde", 396 "serde_cbor", 397 "serde_derive", 398 "serde_json", 399 "tempfile", 400 "thiserror", 401 "thiserror-impl", 402 "walkdir", 403] 404 405[[package]] 406name = "proc-macro2" 407version = "1.0.26" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" 410dependencies = [ 411 "unicode-xid", 412] 413 414[[package]] 415name = "quote" 416version = "1.0.9" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 419dependencies = [ 420 "proc-macro2", 421] 422 423[[package]] 424name = "rand" 425version = "0.3.23" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" 428dependencies = [ 429 "libc", 430 "rand 0.4.6", 431] 432 433[[package]] 434name = "rand" 435version = "0.4.6" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 438dependencies = [ 439 "fuchsia-cprng", 440 "libc", 441 "rand_core 0.3.1", 442 "rdrand", 443 "winapi 0.3.9", 444] 445 446[[package]] 447name = "rand" 448version = "0.8.5" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 451dependencies = [ 452 "libc", 453 "rand_chacha", 454 "rand_core 0.6.4", 455] 456 457[[package]] 458name = "rand_chacha" 459version = "0.3.1" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 462dependencies = [ 463 "ppv-lite86", 464 "rand_core 0.6.4", 465] 466 467[[package]] 468name = "rand_core" 469version = "0.3.1" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 472dependencies = [ 473 "rand_core 0.4.2", 474] 475 476[[package]] 477name = "rand_core" 478version = "0.4.2" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 481 482[[package]] 483name = "rand_core" 484version = "0.6.4" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 487dependencies = [ 488 "getrandom", 489] 490 491[[package]] 492name = "rayon" 493version = "1.5.0" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" 496dependencies = [ 497 "autocfg", 498 "crossbeam-deque", 499 "either", 500 "rayon-core", 501] 502 503[[package]] 504name = "rayon-core" 505version = "1.9.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" 508dependencies = [ 509 "crossbeam-channel", 510 "crossbeam-deque", 511 "crossbeam-utils", 512 "lazy_static", 513 "num_cpus", 514] 515 516[[package]] 517name = "rdrand" 518version = "0.4.0" 519source = "registry+https://github.com/rust-lang/crates.io-index" 520checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 521dependencies = [ 522 "rand_core 0.3.1", 523] 524 525[[package]] 526name = "redox_syscall" 527version = "0.1.57" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 530 531[[package]] 532name = "regex" 533version = "1.4.6" 534source = "registry+https://github.com/rust-lang/crates.io-index" 535checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759" 536dependencies = [ 537 "aho-corasick", 538 "memchr", 539 "regex-syntax", 540] 541 542[[package]] 543name = "regex-automata" 544version = "0.1.10" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 547 548[[package]] 549name = "regex-syntax" 550version = "0.6.29" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 553 554[[package]] 555name = "ryu" 556version = "1.0.16" 557source = "registry+https://github.com/rust-lang/crates.io-index" 558checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 559 560[[package]] 561name = "same-file" 562version = "1.0.6" 563source = "registry+https://github.com/rust-lang/crates.io-index" 564checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 565dependencies = [ 566 "winapi-util", 567] 568 569[[package]] 570name = "serde" 571version = "1.0.123" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae" 574dependencies = [ 575 "serde_derive", 576] 577 578[[package]] 579name = "serde_cbor" 580version = "0.11.2" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 583dependencies = [ 584 "half", 585 "serde", 586] 587 588[[package]] 589name = "serde_derive" 590version = "1.0.123" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31" 593dependencies = [ 594 "proc-macro2", 595 "quote", 596 "syn", 597] 598 599[[package]] 600name = "serde_json" 601version = "1.0.62" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486" 604dependencies = [ 605 "itoa", 606 "ryu", 607 "serde", 608] 609 610[[package]] 611name = "syn" 612version = "1.0.80" 613source = "registry+https://github.com/rust-lang/crates.io-index" 614checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194" 615dependencies = [ 616 "proc-macro2", 617 "quote", 618 "unicode-xid", 619] 620 621[[package]] 622name = "tempfile" 623version = "2.2.0" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0" 626dependencies = [ 627 "kernel32-sys", 628 "libc", 629 "rand 0.3.23", 630 "redox_syscall", 631 "winapi 0.2.8", 632] 633 634[[package]] 635name = "termcolor" 636version = "1.4.1" 637source = "registry+https://github.com/rust-lang/crates.io-index" 638checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 639dependencies = [ 640 "winapi-util", 641] 642 643[[package]] 644name = "thiserror" 645version = "1.0.24" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e" 648dependencies = [ 649 "thiserror-impl", 650] 651 652[[package]] 653name = "thiserror-impl" 654version = "1.0.24" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0" 657dependencies = [ 658 "proc-macro2", 659 "quote", 660 "syn", 661] 662 663[[package]] 664name = "time" 665version = "0.1.45" 666source = "registry+https://github.com/rust-lang/crates.io-index" 667checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 668dependencies = [ 669 "libc", 670 "wasi 0.10.0+wasi-snapshot-preview1", 671 "winapi 0.3.9", 672] 673 674[[package]] 675name = "unicode-xid" 676version = "0.2.4" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 679 680[[package]] 681name = "walkdir" 682version = "2.4.0" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 685dependencies = [ 686 "same-file", 687 "winapi-util", 688] 689 690[[package]] 691name = "wasi" 692version = "0.10.0+wasi-snapshot-preview1" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 695 696[[package]] 697name = "wasi" 698version = "0.11.0+wasi-snapshot-preview1" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 701 702[[package]] 703name = "winapi" 704version = "0.2.8" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 707 708[[package]] 709name = "winapi" 710version = "0.3.9" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 713dependencies = [ 714 "winapi-i686-pc-windows-gnu", 715 "winapi-x86_64-pc-windows-gnu", 716] 717 718[[package]] 719name = "winapi-build" 720version = "0.1.1" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 723 724[[package]] 725name = "winapi-i686-pc-windows-gnu" 726version = "0.4.0" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 729 730[[package]] 731name = "winapi-util" 732version = "0.1.6" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 735dependencies = [ 736 "winapi 0.3.9", 737] 738 739[[package]] 740name = "winapi-x86_64-pc-windows-gnu" 741version = "0.4.0" 742source = "registry+https://github.com/rust-lang/crates.io-index" 743checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 744