agb/agb-gbafix/Cargo.lock

184 lines
5 KiB
Plaintext
Raw Normal View History

2023-04-07 06:09:44 +10:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "agb-gbafix"
2023-11-01 07:35:14 +11:00
version = "0.18.0"
2023-04-07 06:09:44 +10:00
dependencies = [
2023-04-07 08:16:38 +10:00
"anyhow",
2023-04-07 08:43:57 +10:00
"clap",
2023-04-07 06:09:44 +10:00
"elf",
]
2023-04-07 08:43:57 +10:00
[[package]]
name = "anstream"
2023-12-21 04:09:12 +11:00
version = "0.6.5"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-21 04:09:12 +11:00
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
2023-04-07 08:43:57 +10:00
dependencies = [
"anstyle",
"anstyle-parse",
2023-04-14 07:33:59 +10:00
"anstyle-query",
2023-04-07 08:43:57 +10:00
"anstyle-wincon",
2023-04-14 07:33:59 +10:00
"colorchoice",
2023-04-07 08:43:57 +10:00
"utf8parse",
]
[[package]]
name = "anstyle"
2023-10-04 08:23:24 +11:00
version = "1.0.4"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-04 08:23:24 +11:00
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
2023-04-07 08:43:57 +10:00
[[package]]
name = "anstyle-parse"
2023-12-06 07:51:29 +11:00
version = "0.2.3"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
2023-04-07 08:43:57 +10:00
dependencies = [
"utf8parse",
]
2023-04-14 07:33:59 +10:00
[[package]]
name = "anstyle-query"
2023-12-21 04:09:12 +11:00
version = "1.0.2"
2023-04-14 07:33:59 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-21 04:09:12 +11:00
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
2023-04-14 07:33:59 +10:00
dependencies = [
"windows-sys",
]
2023-04-07 08:43:57 +10:00
[[package]]
name = "anstyle-wincon"
2023-12-06 07:51:29 +11:00
version = "3.0.2"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
2023-04-07 08:43:57 +10:00
dependencies = [
"anstyle",
2023-04-14 07:33:59 +10:00
"windows-sys",
2023-04-07 08:43:57 +10:00
]
2023-04-07 08:16:38 +10:00
[[package]]
name = "anyhow"
2023-12-29 09:33:58 +11:00
version = "1.0.77"
2023-04-07 08:16:38 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9"
2023-04-07 08:43:57 +10:00
[[package]]
name = "clap"
2023-12-29 09:33:58 +11:00
version = "4.4.12"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d"
2023-04-07 08:43:57 +10:00
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
2023-12-29 09:33:58 +11:00
version = "4.4.12"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 09:33:58 +11:00
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
2023-04-07 08:43:57 +10:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_lex"
2023-10-27 08:27:19 +11:00
version = "0.6.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-27 08:27:19 +11:00
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
2023-04-07 08:43:57 +10:00
[[package]]
2023-04-14 07:33:59 +10:00
name = "colorchoice"
2023-04-07 08:43:57 +10:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 07:33:59 +10:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-04-07 08:43:57 +10:00
2023-04-07 06:09:44 +10:00
[[package]]
name = "elf"
2023-11-26 15:15:22 +11:00
version = "0.7.4"
2023-04-07 06:09:44 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-26 15:15:22 +11:00
checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b"
2023-04-07 06:54:26 +10:00
2023-04-07 08:43:57 +10:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "windows-sys"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2023-04-07 08:43:57 +10:00
dependencies = [
2023-04-14 07:33:59 +10:00
"windows-targets",
2023-04-07 08:43:57 +10:00
]
[[package]]
name = "windows-targets"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
2023-04-07 08:43:57 +10:00
dependencies = [
2023-04-14 07:33:59 +10:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2023-04-07 08:43:57 +10:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_aarch64_msvc"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_i686_gnu"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_i686_msvc"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_x86_64_gnu"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2023-04-07 08:43:57 +10:00
[[package]]
name = "windows_x86_64_msvc"
2023-12-06 07:51:29 +11:00
version = "0.52.0"
2023-04-07 08:43:57 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-06 07:51:29 +11:00
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"