rust-selection-sort.kak/Cargo.lock

527 lines
14 KiB
Plaintext
Raw Normal View History

2022-01-22 16:29:02 -05:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-10-30 20:41:58 -04:00
version = 4
2022-01-22 16:29:02 -05:00
[[package]]
name = "aho-corasick"
2024-10-30 20:41:58 -04:00
version = "1.1.3"
2022-01-22 16:29:02 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2022-01-22 16:29:02 -05:00
dependencies = [
"memchr",
]
2022-01-23 22:21:35 -05:00
[[package]]
name = "alphanumeric-sort"
2024-10-30 20:41:58 -04:00
version = "1.5.3"
2022-01-23 22:21:35 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "d67c60c5f10f11c6ee04de72b2dd98bb9d2548cbc314d22a609bfa8bd9e87e8f"
2022-01-23 22:21:35 -05:00
2022-01-22 23:16:12 -05:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "anstream"
2024-10-30 20:41:58 -04:00
version = "0.6.17"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "23a1e53f0f5d86382dafe1cf314783b2044280f406e7e1506368220ad11b1338"
2023-09-12 23:01:37 -04:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-10-30 20:41:58 -04:00
"is_terminal_polyfill",
2023-09-12 23:01:37 -04:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-10-30 20:41:58 -04:00
version = "1.0.9"
2023-09-12 23:01:37 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "8365de52b16c035ff4fcafe0092ba9390540e3e352870ac09933bebcaa2c8c56"
2022-01-22 23:16:12 -05:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "anstyle-parse"
2024-10-30 20:41:58 -04:00
version = "0.2.6"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
2023-09-12 23:01:37 -04:00
dependencies = [
"utf8parse",
]
2022-01-22 23:16:12 -05:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "anstyle-query"
2024-10-30 20:41:58 -04:00
version = "1.1.2"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
2023-09-12 23:01:37 -04:00
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
2024-10-30 20:41:58 -04:00
version = "3.0.6"
2023-09-12 23:01:37 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
2023-09-12 23:01:37 -04:00
dependencies = [
"anstyle",
"windows-sys",
]
2022-01-22 23:16:12 -05:00
2024-10-30 20:41:58 -04:00
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2022-02-21 17:23:34 -05:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-01-22 23:16:12 -05:00
[[package]]
name = "clap"
2024-10-30 20:41:58 -04:00
version = "4.5.20"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
2022-01-22 23:16:12 -05:00
dependencies = [
2023-09-12 23:01:37 -04:00
"clap_builder",
2022-01-22 23:16:12 -05:00
"clap_derive",
2023-09-12 23:01:37 -04:00
]
[[package]]
name = "clap_builder"
2024-10-30 20:41:58 -04:00
version = "4.5.20"
2023-09-12 23:01:37 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
2023-09-12 23:01:37 -04:00
dependencies = [
"anstream",
"anstyle",
2023-05-17 21:36:14 -04:00
"clap_lex",
2022-01-22 23:16:12 -05:00
"strsim",
]
[[package]]
name = "clap_derive"
2024-10-30 20:41:58 -04:00
version = "4.5.18"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
2022-01-22 23:16:12 -05:00
dependencies = [
2024-10-30 20:41:58 -04:00
"heck 0.5.0",
2022-01-22 23:16:12 -05:00
"proc-macro2",
"quote",
2024-10-30 20:41:58 -04:00
"syn 2.0.85",
2022-01-22 23:16:12 -05:00
]
2023-05-17 21:36:14 -04:00
[[package]]
name = "clap_lex"
2024-10-30 20:41:58 -04:00
version = "0.7.2"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
2023-05-17 21:36:14 -04:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "colorchoice"
2024-10-30 20:41:58 -04:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
[[package]]
name = "duct"
version = "0.13.7"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "e4ab5718d1224b63252cd0c6f74f6480f9ffeb117438a2e0f5cf6d9a4798929c"
dependencies = [
"libc",
"once_cell",
"os_pipe",
"shared_child",
]
2023-05-17 21:36:14 -04:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "either"
2024-10-30 20:41:58 -04:00
version = "1.13.0"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2023-05-17 21:36:14 -04:00
[[package]]
name = "evalexpr"
2023-09-12 23:01:37 -04:00
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "1d4fd7bd9e32c1205549decf6f36772d7b606a579b26afaffa335ae148151a5d"
2022-02-21 17:23:34 -05:00
[[package]]
name = "getrandom"
2024-10-30 20:41:58 -04:00
version = "0.2.15"
2022-02-21 17:23:34 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2022-02-21 17:23:34 -05:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2022-01-22 23:16:12 -05:00
[[package]]
name = "heck"
2023-09-12 23:01:37 -04:00
version = "0.4.1"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-01-22 23:16:12 -05:00
2024-10-30 20:41:58 -04:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2022-01-22 23:16:12 -05:00
[[package]]
2023-05-17 21:36:14 -04:00
name = "itertools"
version = "0.10.5"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-17 21:36:14 -04:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2022-01-22 23:16:12 -05:00
dependencies = [
2023-05-17 21:36:14 -04:00
"either",
2022-01-22 23:16:12 -05:00
]
2022-06-04 23:45:05 -04:00
[[package]]
name = "kakplugin"
version = "0.1.0"
dependencies = [
"shell-words",
2022-06-04 23:45:05 -04:00
]
2022-02-11 23:27:51 -05:00
[[package]]
name = "kakutils-rs"
version = "0.1.0"
dependencies = [
"alphanumeric-sort",
"clap",
2024-10-30 20:41:58 -04:00
"duct",
2023-05-17 21:36:14 -04:00
"either",
"evalexpr",
2023-05-17 21:36:14 -04:00
"itertools",
2022-06-04 23:45:05 -04:00
"kakplugin",
2022-06-06 18:01:49 -04:00
"linked-hash-map",
"linked_hash_set",
2022-02-21 17:23:34 -05:00
"rand",
2022-02-11 23:27:51 -05:00
"regex",
2022-07-06 22:11:41 -04:00
"strum",
"strum_macros",
2022-02-11 23:27:51 -05:00
]
2022-01-22 23:16:12 -05:00
[[package]]
name = "libc"
2024-10-30 20:41:58 -04:00
version = "0.2.161"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
2022-01-22 23:16:12 -05:00
2022-06-06 18:01:49 -04:00
[[package]]
name = "linked-hash-map"
2023-09-12 23:01:37 -04:00
version = "0.5.6"
2022-06-06 18:01:49 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2022-06-06 18:01:49 -04:00
[[package]]
name = "linked_hash_set"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588"
dependencies = [
"linked-hash-map",
]
2022-01-22 16:29:02 -05:00
[[package]]
name = "memchr"
2024-10-30 20:41:58 -04:00
version = "2.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
[[package]]
name = "once_cell"
version = "1.20.2"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
[[package]]
name = "os_pipe"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982"
dependencies = [
"libc",
"windows-sys",
]
2022-01-22 23:16:12 -05:00
2022-02-21 17:23:34 -05:00
[[package]]
name = "ppv-lite86"
2024-10-30 20:41:58 -04:00
version = "0.2.20"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2022-01-22 23:16:12 -05:00
[[package]]
name = "proc-macro2"
2024-10-30 20:41:58 -04:00
version = "1.0.89"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
2022-01-22 23:16:12 -05:00
dependencies = [
2023-05-17 21:36:14 -04:00
"unicode-ident",
2022-01-22 23:16:12 -05:00
]
[[package]]
name = "quote"
2024-10-30 20:41:58 -04:00
version = "1.0.37"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2022-01-22 23:16:12 -05:00
dependencies = [
"proc-macro2",
]
2022-02-21 17:23:34 -05: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"
2023-09-12 23:01:37 -04:00
version = "0.6.4"
2022-02-21 17:23:34 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-02-21 17:23:34 -05:00
dependencies = [
"getrandom",
]
2022-01-22 16:29:02 -05:00
[[package]]
name = "regex"
2024-10-30 20:41:58 -04:00
version = "1.11.1"
2022-01-22 16:29:02 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2022-01-22 16:29:02 -05:00
dependencies = [
"aho-corasick",
"memchr",
2023-09-12 23:01:37 -04:00
"regex-automata",
2022-01-22 16:29:02 -05:00
"regex-syntax",
]
[[package]]
2023-09-12 23:01:37 -04:00
name = "regex-automata"
2024-10-30 20:41:58 -04:00
version = "0.4.8"
2022-01-22 16:29:02 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2023-09-12 23:01:37 -04:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
2022-01-22 16:29:02 -05:00
2023-05-17 21:36:14 -04:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "regex-syntax"
2024-10-30 20:41:58 -04:00
version = "0.8.5"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2023-05-17 21:36:14 -04:00
2022-07-06 22:11:41 -04:00
[[package]]
name = "rustversion"
2024-10-30 20:41:58 -04:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
[[package]]
name = "shared_child"
version = "1.0.1"
2022-07-06 22:11:41 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "09fa9338aed9a1df411814a5b2252f7cd206c55ae9bf2fa763f8de84603aa60c"
dependencies = [
"libc",
"windows-sys",
]
2022-07-06 22:11:41 -04:00
2022-01-22 16:29:02 -05:00
[[package]]
name = "shell-words"
2022-02-11 23:27:51 -05:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2022-01-22 23:16:12 -05:00
[[package]]
name = "strsim"
2024-10-30 20:41:58 -04:00
version = "0.11.1"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2022-01-22 23:16:12 -05:00
2022-07-06 22:11:41 -04:00
[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
2023-09-12 23:01:37 -04:00
version = "0.24.3"
2022-07-06 22:11:41 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2022-07-06 22:11:41 -04:00
dependencies = [
2024-10-30 20:41:58 -04:00
"heck 0.4.1",
2022-07-06 22:11:41 -04:00
"proc-macro2",
"quote",
"rustversion",
2023-09-12 23:01:37 -04:00
"syn 1.0.109",
2022-07-06 22:11:41 -04:00
]
2022-01-22 23:16:12 -05:00
[[package]]
name = "syn"
2023-09-12 23:01:37 -04:00
version = "1.0.109"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-01-22 23:16:12 -05:00
dependencies = [
"proc-macro2",
"quote",
2023-09-12 23:01:37 -04:00
"unicode-ident",
2022-01-22 23:16:12 -05:00
]
[[package]]
2023-09-12 23:01:37 -04:00
name = "syn"
2024-10-30 20:41:58 -04:00
version = "2.0.85"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
2022-01-22 23:16:12 -05:00
dependencies = [
2023-09-12 23:01:37 -04:00
"proc-macro2",
"quote",
"unicode-ident",
2022-01-22 23:16:12 -05:00
]
[[package]]
2023-05-17 21:36:14 -04:00
name = "unicode-ident"
2024-10-30 20:41:58 -04:00
version = "1.0.13"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
2022-01-22 23:16:12 -05:00
[[package]]
2023-09-12 23:01:37 -04:00
name = "utf8parse"
2024-10-30 20:41:58 -04:00
version = "0.2.2"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2022-01-22 23:16:12 -05:00
2022-02-21 17:23:34 -05:00
[[package]]
name = "wasi"
2023-09-12 23:01:37 -04:00
version = "0.11.0+wasi-snapshot-preview1"
2022-01-22 23:16:12 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-12 23:01:37 -04:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows-sys"
2024-10-30 20:41:58 -04:00
version = "0.59.0"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2023-05-17 21:36:14 -04:00
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2023-05-17 21:36:14 -04:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-10-30 20:41:58 -04:00
"windows_i686_gnullvm",
2023-05-17 21:36:14 -04:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_aarch64_msvc"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_i686_gnu"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_i686_msvc"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_x86_64_gnu"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2023-05-17 21:36:14 -04:00
[[package]]
name = "windows_x86_64_msvc"
2024-10-30 20:41:58 -04:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zerocopy"
version = "0.7.35"
2023-05-17 21:36:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-30 20:41:58 -04:00
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"byteorder",
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.85",
]