agb/examples/the-hat-chooses-the-wizard/Cargo.lock

462 lines
11 KiB
Plaintext
Raw Normal View History

2022-01-01 23:09:21 +11:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2022-02-25 09:26:08 +11:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-01-01 23:09:21 +11:00
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
name = "agb"
2022-08-03 08:52:43 +10:00
version = "0.11.1"
2022-01-01 23:09:21 +11:00
dependencies = [
"agb_fixnum",
2022-01-01 23:09:21 +11:00
"agb_image_converter",
"agb_macros",
"agb_sound_converter",
2022-02-25 09:26:08 +11:00
"bare-metal",
2022-01-01 23:09:21 +11:00
"bitflags",
2022-02-25 08:45:14 +11:00
"modular-bitfield",
"rustc-hash",
2022-01-01 23:09:21 +11:00
]
[[package]]
name = "agb_fixnum"
2022-08-03 08:52:43 +10:00
version = "0.11.1"
dependencies = [
"agb_macros",
]
2022-01-01 23:09:21 +11:00
[[package]]
name = "agb_image_converter"
2022-08-03 08:52:43 +10:00
version = "0.11.1"
2022-01-01 23:09:21 +11:00
dependencies = [
2022-02-25 08:45:14 +11:00
"asefile",
"fontdue",
2022-01-01 23:09:21 +11:00
"image",
"proc-macro2",
"quote",
"serde",
"syn",
"toml",
]
[[package]]
name = "agb_macros"
2022-08-03 08:52:43 +10:00
version = "0.11.1"
2022-01-01 23:09:21 +11:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "agb_sound_converter"
2022-08-03 08:52:43 +10:00
version = "0.11.1"
2022-01-01 23:09:21 +11:00
dependencies = [
"hound",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2022-02-25 08:45:14 +11:00
[[package]]
name = "asefile"
2022-04-25 02:12:05 +10:00
version = "0.3.5"
2022-02-25 08:45:14 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 02:12:05 +10:00
checksum = "10a71de7aecd2d0a76ec90fde2c443d12667c737d92de76bd187f101eca37891"
2022-02-25 08:45:14 +11:00
dependencies = [
"bitflags",
"byteorder",
"flate2",
"image",
"log",
"nohash",
]
2022-01-01 23:09:21 +11:00
[[package]]
name = "autocfg"
2022-02-25 09:26:08 +11:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bare-metal"
version = "1.0.0"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 09:26:08 +11:00
checksum = "f8fe8f5a8a398345e52358e18ff07cc17a568fbca5c6f73873d3a62056309603"
2022-01-01 23:09:21 +11:00
[[package]]
name = "bitflags"
2022-01-02 09:47:25 +11:00
version = "1.3.2"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 09:47:25 +11:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-01-01 23:09:21 +11:00
[[package]]
name = "bytemuck"
2022-08-01 02:08:48 +10:00
version = "1.11.0"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 02:08:48 +10:00
checksum = "a5377c8865e74a160d21f29c2d40669f53286db6eab59b88540cbb12ffc8b835"
2022-01-01 23:09:21 +11:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[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 09:26:08 +11:00
version = "1.3.2"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 09:26:08 +11:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2022-01-01 23:09:21 +11:00
dependencies = [
"cfg-if",
]
[[package]]
name = "deflate"
2022-02-25 08:45:14 +11:00
version = "0.8.6"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 08:45:14 +11:00
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
2022-01-01 23:09:21 +11:00
dependencies = [
"adler32",
2022-02-25 08:45:14 +11:00
"byteorder",
]
[[package]]
name = "flate2"
2022-05-31 20:15:10 +10:00
version = "1.0.24"
2022-02-25 08:45:14 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2022-02-25 08:45:14 +11:00
dependencies = [
"crc32fast",
2022-05-31 20:15:10 +10:00
"miniz_oxide 0.5.3",
2022-02-25 08:45:14 +11:00
]
[[package]]
name = "fontdue"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a62391ecb864cf12ed06b2af4eda2e609b97657950d6a8f06841b17726ab253"
dependencies = [
"hashbrown",
"ttf-parser",
]
[[package]]
name = "getrandom"
2022-06-27 02:32:08 +10:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-27 02:32:08 +10:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
"ahash",
]
2022-01-01 23:09:21 +11:00
[[package]]
name = "hound"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a164bb2ceaeff4f42542bdb847c41517c78a60f5649671b2a07312b6e117549"
[[package]]
name = "image"
2022-02-25 08:45:14 +11:00
version = "0.23.14"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 08:45:14 +11:00
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
2022-01-01 23:09:21 +11:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-iter",
"num-rational",
"num-traits",
"png",
]
[[package]]
name = "itoa"
2022-08-13 00:49:01 +10:00
version = "1.0.3"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
2022-01-01 23:09:21 +11:00
2022-02-25 08:45:14 +11:00
[[package]]
name = "libc"
2022-08-13 00:49:01 +10:00
version = "0.2.131"
2022-02-25 08:45:14 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40"
2022-02-25 08:45:14 +11:00
[[package]]
name = "log"
2022-05-31 20:15:10 +10:00
version = "0.4.17"
2022-02-25 08:45:14 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2022-02-25 08:45:14 +11:00
dependencies = [
"cfg-if",
]
[[package]]
name = "miniz_oxide"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
dependencies = [
"adler32",
]
2022-01-01 23:09:21 +11:00
[[package]]
name = "miniz_oxide"
2022-05-31 20:15:10 +10:00
version = "0.5.3"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2022-01-01 23:09:21 +11:00
dependencies = [
2022-02-25 09:26:08 +11:00
"adler",
2022-02-25 08:45:14 +11:00
]
[[package]]
name = "modular-bitfield"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a53d79ba8304ac1c4f9eb3b9d281f21f7be9d4626f72ce7df4ad8fbde4f38a74"
dependencies = [
"modular-bitfield-impl",
"static_assertions",
]
[[package]]
name = "modular-bitfield-impl"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a7d5f7076603ebc68de2dc6a650ec331a062a13abaa346975be747bbfa4b789"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-01-01 23:09:21 +11:00
]
2022-02-25 08:45:14 +11:00
[[package]]
name = "nohash"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0f889fb66f7acdf83442c35775764b51fed3c606ab9cee51500dbde2cf528ca"
2022-01-01 23:09:21 +11:00
[[package]]
name = "num-integer"
2022-05-31 20:15:10 +10:00
version = "0.1.45"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2022-01-01 23:09:21 +11:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
2022-05-31 20:15:10 +10:00
version = "0.1.43"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
2022-01-01 23:09:21 +11:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
2022-02-25 08:45:14 +11:00
version = "0.3.2"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 08:45:14 +11:00
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
2022-01-01 23:09:21 +11:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2022-05-31 20:15:10 +10:00
version = "0.2.15"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-31 20:15:10 +10:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2022-01-01 23:09:21 +11:00
dependencies = [
"autocfg",
]
[[package]]
name = "once_cell"
2022-07-13 16:00:40 +10:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 16:00:40 +10:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2022-01-01 23:09:21 +11:00
[[package]]
name = "png"
2022-02-25 08:45:14 +11:00
version = "0.16.8"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-25 08:45:14 +11:00
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
2022-01-01 23:09:21 +11:00
dependencies = [
"bitflags",
"crc32fast",
"deflate",
2022-02-25 08:45:14 +11:00
"miniz_oxide 0.3.7",
2022-01-01 23:09:21 +11:00
]
[[package]]
name = "proc-macro2"
2022-08-13 00:49:01 +10:00
version = "1.0.43"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2022-01-01 23:09:21 +11:00
dependencies = [
2022-05-31 20:15:10 +10:00
"unicode-ident",
2022-01-01 23:09:21 +11:00
]
[[package]]
name = "quote"
2022-08-13 00:49:01 +10:00
version = "1.0.21"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2022-01-01 23:09:21 +11:00
dependencies = [
"proc-macro2",
]
2022-02-25 08:45:14 +11:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2022-01-01 23:09:21 +11:00
[[package]]
name = "ryu"
2022-08-13 00:49:01 +10:00
version = "1.0.11"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2022-01-01 23:09:21 +11:00
[[package]]
name = "serde"
2022-08-13 00:49:01 +10:00
version = "1.0.143"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553"
2022-01-01 23:09:21 +11:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-08-13 00:49:01 +10:00
version = "1.0.143"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "d3d8e8de557aee63c26b85b947f5e59b690d0454c753f3adeb5cd7835ab88391"
2022-01-01 23:09:21 +11:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-08-13 00:49:01 +10:00
version = "1.0.83"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
2022-01-01 23:09:21 +11:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2022-02-25 08:45:14 +11:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2022-01-01 23:09:21 +11:00
[[package]]
name = "syn"
2022-08-13 00:49:01 +10:00
version = "1.0.99"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2022-01-01 23:09:21 +11:00
dependencies = [
"proc-macro2",
"quote",
2022-05-31 20:15:10 +10:00
"unicode-ident",
2022-01-01 23:09:21 +11:00
]
2022-01-01 23:15:56 +11:00
[[package]]
name = "the-hat-chooses-the-wizard"
version = "0.1.0"
dependencies = [
"agb",
"serde",
"serde_json",
]
2022-01-01 23:09:21 +11:00
[[package]]
name = "toml"
2022-04-24 08:14:08 +10:00
version = "0.5.9"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 08:14:08 +10:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2022-01-01 23:09:21 +11:00
dependencies = [
"serde",
]
[[package]]
name = "ttf-parser"
2022-06-27 02:32:08 +10:00
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-27 02:32:08 +10:00
checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd"
2022-01-01 23:09:21 +11:00
[[package]]
2022-05-31 20:15:10 +10:00
name = "unicode-ident"
2022-08-13 00:49:01 +10:00
version = "1.0.3"
2022-01-01 23:09:21 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-13 00:49:01 +10:00
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasi"
2022-06-27 02:32:08 +10:00
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-27 02:32:08 +10:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"