agb/mgba-test-runner/Cargo.lock

512 lines
13 KiB
Plaintext
Raw Normal View History

2021-04-20 07:21:44 +10:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-21 10:03:25 +10:00
version = 3
2022-02-25 07:49:44 +11:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-06-04 19:30:18 +10:00
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2021-04-20 07:21:44 +10:00
[[package]]
name = "aho-corasick"
2022-01-13 10:05:02 +11:00
version = "0.7.18"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-13 10:05:02 +11:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2021-04-20 07:21:44 +10:00
dependencies = [
"memchr",
]
[[package]]
name = "anyhow"
2022-04-24 08:14:08 +10:00
version = "1.0.57"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 08:14:08 +10:00
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
2021-04-20 07:21:44 +10:00
2021-05-23 14:06:35 +10:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2021-06-04 19:30:18 +10:00
[[package]]
name = "autocfg"
2022-02-25 07:37:17 +11:00
version = "1.1.0"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 07:37:17 +11:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-06-04 19:30:18 +10:00
2021-05-23 14:06:35 +10:00
[[package]]
name = "bindgen"
2022-06-08 07:16:29 +10:00
version = "0.60.1"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 07:16:29 +10:00
checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
2021-05-23 14:06:35 +10:00
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"clap",
"env_logger",
"lazy_static",
"lazycell",
"log",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"which",
]
[[package]]
name = "bitflags"
2022-01-13 10:05:02 +11:00
version = "1.3.2"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-13 10:05:02 +11:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-05-23 14:06:35 +10:00
2021-06-04 19:30:18 +10:00
[[package]]
name = "bytemuck"
2022-04-05 01:18:00 +10:00
version = "1.9.1"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-05 01:18:00 +10:00
checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
2021-06-04 19:30:18 +10:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2021-04-20 07:21:44 +10:00
[[package]]
name = "cc"
2022-02-25 07:37:17 +11:00
version = "1.0.73"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 07:37:17 +11:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-04-20 07:21:44 +10:00
dependencies = [
"jobserver",
]
2021-05-23 14:06:35 +10:00
[[package]]
name = "cexpr"
2022-01-02 08:07:43 +11:00
version = "0.6.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 08:07:43 +11:00
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
2021-05-23 14:06:35 +10:00
dependencies = [
"nom",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clang-sys"
2022-05-31 20:15:10 +10:00
version = "1.3.3"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
2021-05-23 14:06:35 +10:00
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "clap"
2022-06-06 06:16:20 +10:00
version = "3.1.18"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 06:16:20 +10:00
checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
2021-05-23 14:06:35 +10:00
dependencies = [
"atty",
"bitflags",
2022-06-06 06:16:20 +10:00
"clap_lex",
"indexmap",
2021-05-23 14:06:35 +10:00
"strsim",
2022-06-06 06:16:20 +10:00
"termcolor",
2021-05-23 14:06:35 +10:00
"textwrap",
2022-06-06 06:16:20 +10:00
]
[[package]]
name = "clap_lex"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
dependencies = [
"os_str_bytes",
2021-05-23 14:06:35 +10:00
]
2021-06-04 19:30:18 +10:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "crc32fast"
2022-02-25 07:37:17 +11:00
version = "1.3.2"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 07:37:17 +11:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-06-04 19:30:18 +10:00
dependencies = [
2021-06-21 10:03:25 +10:00
"cfg-if",
2021-06-04 19:30:18 +10:00
]
[[package]]
name = "deflate"
2022-02-25 07:49:44 +11:00
version = "1.0.0"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 07:49:44 +11:00
checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
2021-06-04 19:30:18 +10:00
dependencies = [
"adler32",
]
2022-01-02 08:07:43 +11:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2021-05-23 14:06:35 +10:00
[[package]]
name = "env_logger"
2022-01-02 08:07:43 +11:00
version = "0.9.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 08:07:43 +11:00
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
2021-05-23 14:06:35 +10:00
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2022-06-06 06:16:20 +10:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-05-23 14:06:35 +10:00
[[package]]
name = "hermit-abi"
2022-01-13 10:05:02 +11:00
version = "0.1.19"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-13 10:05:02 +11:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-05-23 14:06:35 +10:00
dependencies = [
"libc",
]
[[package]]
name = "humantime"
2021-06-21 10:03:25 +10:00
version = "2.1.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-21 10:03:25 +10:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-05-23 14:06:35 +10:00
2021-06-04 19:30:18 +10:00
[[package]]
name = "image"
2022-05-31 20:15:10 +10:00
version = "0.24.2"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212"
2021-06-04 19:30:18 +10:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-iter",
"num-rational",
"num-traits",
"png",
]
2022-06-06 06:16:20 +10:00
[[package]]
name = "indexmap"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
dependencies = [
"autocfg",
"hashbrown",
]
2021-04-20 07:21:44 +10:00
[[package]]
name = "jobserver"
2022-01-13 10:05:02 +11:00
version = "0.1.24"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-13 10:05:02 +11:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
2021-04-20 07:21:44 +10:00
dependencies = [
"libc",
]
2021-05-23 14:06:35 +10:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2021-04-20 07:21:44 +10:00
[[package]]
name = "libc"
2022-05-31 20:15:10 +10:00
version = "0.2.126"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2021-04-20 07:21:44 +10:00
2021-05-23 14:06:35 +10:00
[[package]]
name = "libloading"
version = "0.7.3"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
2021-05-23 14:06:35 +10:00
dependencies = [
2021-06-21 10:03:25 +10:00
"cfg-if",
2021-05-23 14:06:35 +10:00
"winapi",
]
[[package]]
name = "log"
2022-05-31 20:15:10 +10:00
version = "0.4.17"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-05-23 14:06:35 +10:00
dependencies = [
2021-06-21 10:03:25 +10:00
"cfg-if",
2021-05-23 14:06:35 +10:00
]
2021-04-20 07:21:44 +10:00
[[package]]
name = "memchr"
2022-05-31 20:15:10 +10:00
version = "2.5.0"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-04-20 07:21:44 +10:00
[[package]]
name = "mgba-test-runner"
version = "0.1.0"
dependencies = [
"anyhow",
2021-05-23 14:06:35 +10:00
"bindgen",
2021-04-20 07:21:44 +10:00
"cc",
2021-06-04 19:30:18 +10:00
"image",
2021-04-20 07:21:44 +10:00
"regex",
]
2022-01-02 08:07:43 +11:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-06-04 19:30:18 +10:00
[[package]]
name = "miniz_oxide"
2022-05-31 20:15:10 +10:00
version = "0.5.3"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2021-06-04 19:30:18 +10:00
dependencies = [
2022-02-25 07:49:44 +11:00
"adler",
2021-06-04 19:30:18 +10:00
]
2021-05-23 14:06:35 +10:00
[[package]]
name = "nom"
2022-03-15 17:06:15 +11:00
version = "7.1.1"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-15 17:06:15 +11:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2021-05-23 14:06:35 +10:00
dependencies = [
"memchr",
2022-01-02 08:07:43 +11:00
"minimal-lexical",
2021-05-23 14:06:35 +10:00
]
2021-06-04 19:30:18 +10:00
[[package]]
name = "num-integer"
2022-05-31 20:15:10 +10:00
version = "0.1.45"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2021-06-04 19:30:18 +10:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
2022-05-31 20:15:10 +10:00
version = "0.1.43"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
2021-06-04 19:30:18 +10:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
2022-02-25 07:49:44 +11:00
version = "0.4.0"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 07:49:44 +11:00
checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
2021-06-04 19:30:18 +10:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2022-05-31 20:15:10 +10:00
version = "0.2.15"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-06-04 19:30:18 +10:00
dependencies = [
"autocfg",
]
2022-06-06 06:16:20 +10:00
[[package]]
name = "os_str_bytes"
version = "6.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
2021-05-23 14:06:35 +10:00
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2021-06-04 19:30:18 +10:00
[[package]]
name = "png"
2022-03-06 07:52:26 +11:00
version = "0.17.5"
2021-06-04 19:30:18 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 07:52:26 +11:00
checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
2021-06-04 19:30:18 +10:00
dependencies = [
"bitflags",
"crc32fast",
"deflate",
2021-08-02 03:03:13 +10:00
"miniz_oxide",
2021-06-04 19:30:18 +10:00
]
2021-05-23 14:06:35 +10:00
[[package]]
name = "proc-macro2"
2022-05-31 20:15:10 +10:00
version = "1.0.39"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
2021-05-23 14:06:35 +10:00
dependencies = [
2022-05-31 20:15:10 +10:00
"unicode-ident",
2021-05-23 14:06:35 +10:00
]
[[package]]
name = "quote"
2022-04-11 21:55:44 +10:00
version = "1.0.18"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 21:55:44 +10:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
2021-05-23 14:06:35 +10:00
dependencies = [
"proc-macro2",
]
2021-04-20 07:21:44 +10:00
[[package]]
name = "regex"
2022-05-31 20:15:10 +10:00
version = "1.5.6"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
2021-04-20 07:21:44 +10:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-05-31 20:15:10 +10:00
version = "0.6.26"
2021-04-20 07:21:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
2021-05-23 14:06:35 +10:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "shlex"
2022-01-13 10:05:02 +11:00
version = "1.1.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-13 10:05:02 +11:00
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
2021-05-23 14:06:35 +10:00
[[package]]
name = "strsim"
2022-06-06 06:16:20 +10:00
version = "0.10.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 06:16:20 +10:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-05-23 14:06:35 +10:00
[[package]]
name = "termcolor"
2022-03-06 07:52:26 +11:00
version = "1.1.3"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 07:52:26 +11:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2021-05-23 14:06:35 +10:00
dependencies = [
"winapi-util",
]
[[package]]
name = "textwrap"
2022-06-06 06:16:20 +10:00
version = "0.15.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-06 06:16:20 +10:00
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2021-05-23 14:06:35 +10:00
[[package]]
2022-05-31 20:15:10 +10:00
name = "unicode-ident"
version = "1.0.0"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
2021-05-23 14:06:35 +10:00
[[package]]
name = "which"
2022-03-21 22:39:07 +11:00
version = "4.2.5"
2021-05-23 14:06:35 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-21 22:39:07 +11:00
checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
2021-05-23 14:06:35 +10:00
dependencies = [
2022-01-02 08:07:43 +11:00
"either",
"lazy_static",
2021-05-23 14:06:35 +10:00
"libc",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"