agb/examples/combo/Cargo.lock

908 lines
21 KiB
Plaintext
Raw Normal View History

2022-12-02 04:16:53 +11:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
name = "agb"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2022-12-02 04:16:53 +11:00
dependencies = [
"agb_fixnum",
2023-04-24 03:00:31 +10:00
"agb_hashmap",
2022-12-02 04:16:53 +11:00
"agb_image_converter",
"agb_macros",
"agb_sound_converter",
"bare-metal",
2023-05-18 00:01:22 +10:00
"bilge",
2024-01-18 04:23:23 +11:00
"bitflags 2.4.2",
2022-12-02 04:16:53 +11:00
"rustc-hash",
]
[[package]]
name = "agb_fixnum"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2022-12-02 04:16:53 +11:00
dependencies = [
"agb_macros",
]
2023-04-24 03:00:31 +10:00
[[package]]
name = "agb_hashmap"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-04-24 03:00:31 +10:00
dependencies = [
"rustc-hash",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "agb_image_converter"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2022-12-02 04:16:53 +11:00
dependencies = [
"asefile",
"fontdue",
"image",
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "agb_macros"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2022-12-02 04:16:53 +11:00
dependencies = [
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "agb_sound_converter"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2022-12-02 04:16:53 +11:00
dependencies = [
"hound",
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2023-08-30 01:17:14 +10:00
]
[[package]]
name = "agb_tracker"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-08-30 01:17:14 +10:00
dependencies = [
"agb",
"agb_tracker_interop",
"agb_xm",
]
[[package]]
name = "agb_tracker_interop"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-08-30 01:17:14 +10:00
dependencies = [
"agb_fixnum",
"proc-macro2",
"quote",
]
[[package]]
name = "agb_xm"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-08-30 01:17:14 +10:00
dependencies = [
"agb_xm_core",
"proc-macro-error",
"proc-macro2",
]
[[package]]
name = "agb_xm_core"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-08-30 01:17:14 +10:00
dependencies = [
"agb_fixnum",
"agb_tracker_interop",
"proc-macro-error",
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2023-08-30 01:17:14 +10:00
"xmrs",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "ahash"
2024-01-08 02:10:41 +11:00
version = "0.8.7"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
2022-12-02 04:16:53 +11:00
dependencies = [
2023-07-01 07:03:31 +10:00
"cfg-if",
2022-12-02 04:16:53 +11:00
"once_cell",
"version_check",
2023-10-27 08:27:19 +11:00
"zerocopy",
2022-12-02 04:16:53 +11:00
]
2023-11-26 15:15:22 +11:00
[[package]]
name = "allocator-api2"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
2023-04-26 05:57:18 +10:00
[[package]]
name = "amplitude"
version = "0.1.0"
dependencies = [
"agb",
]
2023-05-18 00:01:22 +10:00
[[package]]
name = "arbitrary-int"
2023-07-01 07:03:31 +10:00
version = "1.2.6"
2023-05-18 00:01:22 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-01 07:03:31 +10:00
checksum = "fe8e2a586ecd6eb29477a0c25b19742acca4fa5e39c92e127656616810c20579"
2023-05-18 00:01:22 +10:00
2022-12-02 04:16:53 +11:00
[[package]]
name = "asefile"
2023-07-02 00:21:55 +10:00
version = "0.3.6"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-02 00:21:55 +10:00
checksum = "6277c3125ad5045ff11474a50dd43b31baffdd32c17e580137f176b8025fde71"
2022-12-02 04:16:53 +11:00
dependencies = [
2023-03-24 09:30:47 +11:00
"bitflags 1.3.2",
2022-12-02 04:16:53 +11:00
"byteorder",
"flate2",
"image",
"log",
"nohash",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bare-metal"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8fe8f5a8a398345e52358e18ff07cc17a568fbca5c6f73873d3a62056309603"
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
dependencies = [
"byteorder",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "base64"
2024-01-18 04:23:23 +11:00
version = "0.21.7"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-18 04:23:23 +11:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-08-30 01:17:14 +10:00
2023-05-18 00:01:22 +10:00
[[package]]
name = "bilge"
2023-08-07 06:06:12 +10:00
version = "0.2.0"
2023-05-18 00:01:22 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-07 06:06:12 +10:00
checksum = "dc707ed8ebf81de5cd6c7f48f54b4c8621760926cdf35a57000747c512e67b57"
2023-05-18 00:01:22 +10:00
dependencies = [
"arbitrary-int",
"bilge-impl",
]
[[package]]
name = "bilge-impl"
2023-08-07 06:06:12 +10:00
version = "0.2.0"
2023-05-18 00:01:22 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-07 06:06:12 +10:00
checksum = "feb11e002038ad243af39c2068c8a72bcf147acf05025dcdb916fcc000adb2d8"
2023-05-18 00:01:22 +10:00
dependencies = [
2023-08-07 06:06:12 +10:00
"itertools",
2023-05-18 00:01:22 +10:00
"proc-macro-error",
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2023-08-30 01:17:14 +10:00
]
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
2023-05-18 00:01:22 +10:00
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-03-24 09:30:47 +11:00
[[package]]
name = "bitflags"
2024-01-18 04:23:23 +11:00
version = "2.4.2"
2023-03-24 09:30:47 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-18 04:23:23 +11:00
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
2023-03-24 09:30:47 +11:00
2022-12-02 04:16:53 +11:00
[[package]]
name = "bytemuck"
2024-02-01 10:15:12 +11:00
version = "1.14.1"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9"
2022-12-02 04:16:53 +11:00
[[package]]
name = "byteorder"
2023-10-08 07:35:21 +11:00
version = "1.5.0"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-08 07:35:21 +11:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2022-12-02 04:16:53 +11:00
[[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 = "combo"
version = "0.1.0"
dependencies = [
"agb",
2023-04-26 05:57:18 +10:00
"amplitude",
2022-12-02 04:16:53 +11:00
"hyperspace-roll",
2023-08-30 01:17:14 +10:00
"the-dungeon-puzzlers-lament",
2022-12-02 04:16:53 +11:00
"the-hat-chooses-the-wizard",
"the-purple-night",
]
2023-10-08 07:35:21 +11:00
[[package]]
name = "core2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
dependencies = [
"memchr",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
2023-07-01 07:03:31 +10:00
"cfg-if",
2022-12-02 04:16:53 +11:00
]
2023-10-08 07:35:21 +11:00
[[package]]
name = "dary_heap"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca"
2022-12-02 04:16:53 +11:00
[[package]]
name = "deflate"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
dependencies = [
"adler32",
"byteorder",
]
2023-08-07 06:06:12 +10:00
[[package]]
name = "either"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2023-08-30 01:17:14 +10:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2022-12-02 04:16:53 +11:00
[[package]]
name = "flate2"
2023-10-27 08:27:19 +11:00
version = "1.0.28"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-27 08:27:19 +11:00
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2022-12-02 04:16:53 +11:00
dependencies = [
"crc32fast",
2023-07-01 07:03:31 +10:00
"miniz_oxide 0.7.1",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "fontdue"
2023-11-26 15:15:22 +11:00
version = "0.8.0"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-26 15:15:22 +11:00
checksum = "9099a2f86b8e674b75d03ff154b3fe4c5208ed249ced8d69cc313a9fa40bb488"
2022-12-02 04:16:53 +11:00
dependencies = [
2023-12-06 07:51:29 +11:00
"hashbrown 0.14.3",
2022-12-02 04:16:53 +11:00
"ttf-parser",
]
[[package]]
name = "generational-arena"
2023-07-01 07:03:31 +10:00
version = "0.2.9"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-01 07:03:31 +10:00
checksum = "877e94aff08e743b651baaea359664321055749b398adff8740a7399af7796e7"
2022-12-02 04:16:53 +11:00
dependencies = [
2023-07-01 07:03:31 +10:00
"cfg-if",
2022-12-02 04:16:53 +11:00
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "getrandom"
2024-01-18 04:23:23 +11:00
version = "0.2.12"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-18 04:23:23 +11:00
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
2023-08-30 01:17:14 +10:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "hashbrown"
version = "0.13.2"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2022-12-02 04:16:53 +11:00
dependencies = [
"ahash",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "hashbrown"
2023-12-06 07:51:29 +11:00
version = "0.14.3"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
2023-11-26 15:15:22 +11:00
dependencies = [
"ahash",
"allocator-api2",
]
2023-08-30 01:17:14 +10:00
2022-12-02 04:16:53 +11:00
[[package]]
name = "hound"
2023-09-27 06:25:56 +10:00
version = "3.5.1"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 06:25:56 +10:00
checksum = "62adaabb884c94955b19907d60019f4e145d091c75345379e70d1ee696f7854f"
2022-12-02 04:16:53 +11:00
[[package]]
name = "hyperspace-roll"
version = "0.1.0"
dependencies = [
"agb",
]
[[package]]
name = "image"
version = "0.23.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-iter",
"num-rational",
"num-traits",
"png",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "indexmap"
2024-02-01 10:15:12 +11:00
version = "2.2.2"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520"
2023-08-30 01:17:14 +10:00
dependencies = [
"equivalent",
2023-12-06 07:51:29 +11:00
"hashbrown 0.14.3",
2023-08-30 01:17:14 +10:00
]
2023-08-07 06:06:12 +10:00
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "itoa"
2023-12-21 04:09:12 +11:00
version = "1.0.10"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-21 04:09:12 +11:00
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2022-12-02 04:16:53 +11:00
2023-08-30 01:17:14 +10:00
[[package]]
name = "libc"
2024-02-01 10:15:12 +11:00
version = "0.2.153"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2023-08-30 01:17:14 +10:00
2022-12-02 04:16:53 +11:00
[[package]]
name = "libflate"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9135df43b1f5d0e333385cb6e7897ecd1a43d7d11b91ac003f4d2c2d2401fdd"
dependencies = [
"adler32",
"crc32fast",
"rle-decode-fast",
"take_mut",
]
2023-10-08 07:35:21 +11:00
[[package]]
name = "libflate"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7d5654ae1795afc7ff76f4365c2c8791b0feb18e8996a96adad8ffd7c3b2bf"
dependencies = [
"adler32",
"core2",
"crc32fast",
"dary_heap",
2024-01-08 02:10:41 +11:00
"libflate_lz77",
2023-08-30 01:17:14 +10:00
]
2023-10-08 07:35:21 +11:00
[[package]]
name = "libflate_lz77"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be5f52fb8c451576ec6b79d3f4deb327398bc05bbdbd99021a6e77a4c855d524"
dependencies = [
"core2",
"hashbrown 0.13.2",
"rle-decode-fast",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "log"
2023-08-13 20:36:46 +10:00
version = "0.4.20"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-13 20:36:46 +10:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2022-12-02 04:16:53 +11:00
2023-08-30 01:17:14 +10:00
[[package]]
name = "memchr"
2023-12-29 09:33:58 +11:00
version = "2.7.1"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2023-08-30 01:17:14 +10:00
2022-12-02 04:16:53 +11:00
[[package]]
name = "miniz_oxide"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
dependencies = [
"adler32",
]
[[package]]
name = "miniz_oxide"
2023-07-01 07:03:31 +10:00
version = "0.7.1"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-01 07:03:31 +10:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2022-12-02 04:16:53 +11:00
dependencies = [
"adler",
]
[[package]]
name = "nohash"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0f889fb66f7acdf83442c35775764b51fed3c606ab9cee51500dbde2cf528ca"
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2023-10-27 08:27:19 +11:00
version = "0.2.17"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-27 08:27:19 +11:00
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2022-12-02 04:16:53 +11:00
dependencies = [
"autocfg",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "num_enum"
2024-01-08 02:10:41 +11:00
version = "0.7.2"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
2023-08-30 01:17:14 +10:00
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2024-01-08 02:10:41 +11:00
version = "0.7.2"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
2023-08-30 01:17:14 +10:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2023-08-30 01:17:14 +10:00
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "once_cell"
2023-12-21 04:09:12 +11:00
version = "1.19.0"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-21 04:09:12 +11:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2022-12-02 04:16:53 +11:00
[[package]]
name = "png"
version = "0.16.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
dependencies = [
2023-03-24 09:30:47 +11:00
"bitflags 1.3.2",
2022-12-02 04:16:53 +11:00
"crc32fast",
"deflate",
"miniz_oxide 0.3.7",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-crate"
2024-02-01 10:15:12 +11:00
version = "3.1.0"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
2023-08-30 01:17:14 +10:00
dependencies = [
"toml_edit",
]
2023-05-18 00:01:22 +10:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
2023-08-30 01:17:14 +10:00
"syn 1.0.109",
2023-05-18 00:01:22 +10:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "proc-macro2"
2024-02-01 10:15:12 +11:00
version = "1.0.78"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
2022-12-02 04:16:53 +11:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-01-08 02:10:41 +11:00
version = "1.0.35"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2022-12-02 04:16:53 +11:00
dependencies = [
"proc-macro2",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "rle-decode-fast"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "ryu"
2023-12-21 04:09:12 +11:00
version = "1.0.16"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-21 04:09:12 +11:00
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2022-12-02 04:16:53 +11:00
[[package]]
name = "serde"
2024-02-01 10:15:12 +11:00
version = "1.0.196"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
2022-12-02 04:16:53 +11:00
dependencies = [
"serde_derive",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "serde-big-array"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f"
dependencies = [
"serde",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "serde_derive"
2024-02-01 10:15:12 +11:00
version = "1.0.196"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
2022-12-02 04:16:53 +11:00
dependencies = [
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "serde_json"
2024-02-01 10:15:12 +11:00
version = "1.0.113"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
2022-12-02 04:16:53 +11:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "slotmap"
2023-12-06 07:51:29 +11:00
version = "1.0.7"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
2023-08-30 01:17:14 +10:00
dependencies = [
"version_check",
]
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"unicode-ident",
]
2023-03-24 09:04:22 +11:00
[[package]]
name = "syn"
2024-01-08 02:10:41 +11:00
version = "2.0.48"
2023-03-24 09:04:22 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
2022-12-02 04:16:53 +11:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "take_mut"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
2023-08-30 01:17:14 +10:00
[[package]]
name = "the-dungeon-puzzlers-lament"
version = "0.1.0"
dependencies = [
"agb",
"agb_tracker",
"proc-macro2",
"quote",
"slotmap",
2023-10-08 07:35:21 +11:00
"tiled 0.11.2",
2023-08-30 01:17:14 +10:00
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "the-hat-chooses-the-wizard"
version = "0.1.0"
dependencies = [
"agb",
"serde",
"serde_json",
]
[[package]]
name = "the-purple-night"
version = "0.1.0"
dependencies = [
"agb",
"generational-arena",
"quote",
2023-08-30 01:17:14 +10:00
"tiled 0.9.4",
2022-12-02 04:16:53 +11:00
]
[[package]]
name = "tiled"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d2c30aeea9d8159cb461a17dba23ad28980a2a9c217a6784a14e931e4979d6f"
dependencies = [
2023-08-30 01:17:14 +10:00
"base64 0.10.1",
"libflate 0.1.27",
2022-12-02 04:16:53 +11:00
"xml-rs",
]
2023-08-30 01:17:14 +10:00
[[package]]
name = "tiled"
2023-10-08 07:35:21 +11:00
version = "0.11.2"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-08 07:35:21 +11:00
checksum = "c048b3f6ff5c7cdbf5b7ae0fef79c5bcc562cd40b94c42860949b4f1c093deac"
2023-08-30 01:17:14 +10:00
dependencies = [
2024-01-18 04:23:23 +11:00
"base64 0.21.7",
2023-10-08 07:35:21 +11:00
"libflate 2.0.0",
2023-08-30 01:17:14 +10:00
"xml-rs",
]
[[package]]
name = "toml_datetime"
2023-10-27 08:27:19 +11:00
version = "0.6.5"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-27 08:27:19 +11:00
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2023-08-30 01:17:14 +10:00
[[package]]
name = "toml_edit"
2024-02-01 10:15:12 +11:00
version = "0.21.1"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
2023-08-30 01:17:14 +10:00
dependencies = [
"indexmap",
"toml_datetime",
"winnow",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "ttf-parser"
2023-11-26 15:15:22 +11:00
version = "0.20.0"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-26 15:15:22 +11:00
checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
2022-12-02 04:16:53 +11:00
[[package]]
name = "unicode-ident"
2023-09-13 23:17:49 +10:00
version = "1.0.12"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-13 23:17:49 +10:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-12-02 04:16:53 +11:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-08-30 01:17:14 +10:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "winnow"
2024-02-01 10:15:12 +11:00
version = "0.5.36"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-01 10:15:12 +11:00
checksum = "818ce546a11a9986bc24f93d0cdf38a8a1a400f1473ea8c82e59f6e0ffab9249"
2023-08-30 01:17:14 +10:00
dependencies = [
"memchr",
]
2022-12-02 04:16:53 +11:00
[[package]]
name = "xml-rs"
2023-09-27 06:25:56 +10:00
version = "0.8.19"
2022-12-02 04:16:53 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 06:25:56 +10:00
checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"
2023-08-30 01:17:14 +10:00
[[package]]
name = "xmrs"
2024-01-08 02:10:41 +11:00
version = "0.3.8"
2023-08-30 01:17:14 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-08 02:10:41 +11:00
checksum = "9fb3efa361df642f4d9ffb826695d2a763779ff6a24bce10e2a8536ec0107a4a"
2023-08-30 01:17:14 +10:00
dependencies = [
"bincode",
2024-01-08 02:10:41 +11:00
"libflate 2.0.0",
2023-08-30 01:17:14 +10:00
"num_enum",
"rand",
"serde",
"serde-big-array",
]
2023-10-27 08:27:19 +11:00
[[package]]
name = "zerocopy"
2023-12-29 09:33:58 +11:00
version = "0.7.32"
2023-10-27 08:27:19 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
2023-10-27 08:27:19 +11:00
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
2023-12-29 09:33:58 +11:00
version = "0.7.32"
2023-10-27 08:27:19 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
2023-10-27 08:27:19 +11:00
dependencies = [
"proc-macro2",
"quote",
2024-01-08 02:10:41 +11:00
"syn 2.0.48",
2023-10-27 08:27:19 +11:00
]