outrun/Cargo.lock

569 lines
15 KiB
Text
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2022-08-22 11:30:39 +12:00
[[package]]
name = "addr2line"
version = "0.21.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2022-08-22 11:30:39 +12:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "backtrace"
version = "0.3.69"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2022-08-22 11:30:39 +12:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "backtrace-ext"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
dependencies = [
"backtrace",
]
2023-03-14 17:48:57 +13:00
[[package]]
name = "bitflags"
2024-02-09 11:40:43 +13:00
version = "2.4.2"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
2023-03-14 17:48:57 +13:00
2022-08-04 17:38:00 +12:00
[[package]]
name = "block-buffer"
2023-03-09 15:48:34 +13:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 15:48:34 +13:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "cc"
version = "1.0.83"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "cfg-if"
2022-08-04 17:38:00 +12:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cpufeatures"
2024-02-09 11:40:43 +13:00
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
dependencies = [
"libc",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "digest"
2023-07-21 18:21:23 +12:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 18:21:23 +12:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
2022-08-04 17:38:00 +12:00
2023-03-14 17:48:57 +13:00
[[package]]
name = "errno"
2023-12-08 01:05:59 +13:00
version = "0.3.8"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 01:05:59 +13:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2023-03-14 17:48:57 +13:00
dependencies = [
"libc",
2023-12-08 01:05:59 +13:00
"windows-sys 0.52.0",
2023-03-14 17:48:57 +13:00
]
2022-07-21 08:43:13 +12:00
[[package]]
name = "generic-array"
2023-07-21 18:21:23 +12:00
version = "0.14.7"
2022-07-21 08:43:13 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 18:21:23 +12:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
2022-07-21 08:43:13 +12:00
2022-08-22 11:30:39 +12:00
[[package]]
name = "gimli"
2023-12-08 01:05:59 +13:00
version = "0.28.1"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 01:05:59 +13:00
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2022-09-23 18:05:11 +12:00
2022-08-22 11:30:39 +12:00
[[package]]
name = "is_ci"
version = "1.2.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
2022-08-22 11:30:39 +12:00
2022-07-21 08:43:13 +12:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2024-02-09 11:40:43 +13:00
version = "0.2.153"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2023-03-14 17:48:57 +13:00
[[package]]
name = "linux-raw-sys"
2024-02-09 11:40:43 +13:00
version = "0.4.13"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
2023-03-14 17:48:57 +13:00
2022-08-22 11:30:39 +12:00
[[package]]
name = "memchr"
2024-02-09 11:40:43 +13:00
version = "2.7.1"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2022-08-22 11:30:39 +12:00
[[package]]
name = "miette"
version = "7.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98a72adfa0c7ae88ba0abcbd00047a476616c66b831d628b8ac7f1e9de0cfd67"
2022-08-22 11:30:39 +12:00
dependencies = [
"backtrace",
"backtrace-ext",
2022-08-22 11:30:39 +12:00
"miette-derive",
"owo-colors",
"supports-color",
"supports-hyperlinks",
"supports-unicode",
"terminal_size",
2023-06-09 18:03:52 +12:00
"textwrap",
2022-08-22 11:30:39 +12:00
"thiserror",
"unicode-width",
]
[[package]]
name = "miette-derive"
version = "7.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "279def6bf114a34b3cf887489eb440d4dfcf709ab3ce9955e4a6f957ce5cce77"
2022-08-22 11:30:39 +12:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-22 11:30:39 +12:00
]
[[package]]
name = "miniz_oxide"
2024-02-09 11:40:43 +13:00
version = "0.7.2"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2022-08-22 11:30:39 +12:00
dependencies = [
"adler",
]
[[package]]
name = "object"
2024-02-09 11:40:43 +13:00
version = "0.32.2"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2022-08-22 11:30:39 +12:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-12-08 01:05:59 +13:00
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 01:05:59 +13:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2022-08-09 12:39:52 +12:00
[[package]]
2023-06-09 18:03:52 +12:00
name = "outrun-parser"
2022-08-09 12:39:52 +12:00
version = "0.1.0"
2022-08-22 11:30:39 +12:00
dependencies = [
"lazy_static",
2022-08-22 11:30:39 +12:00
"miette",
"pest",
"pest_derive",
2022-08-22 11:30:39 +12:00
"thiserror",
2022-08-09 12:39:52 +12:00
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "owo-colors"
version = "4.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
2022-08-22 11:30:39 +12:00
[[package]]
name = "pest"
version = "2.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "219c0dcc30b6a27553f9cc242972b67f75b60eb0db71f0b5462f38b058c41546"
dependencies = [
"memchr",
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22e1288dbd7786462961e69bfd4df7848c1e37e8b74303dbdab82c3a9cdd2809"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1381c29a877c6d34b8c176e734f35d7f7f5b3adaefe940cb4d1bb7af94678e2e"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0934d6907f148c22a3acbda520c7eed243ad7487a30f51f6ce52b58b7077a8a"
dependencies = [
"once_cell",
"pest",
2023-01-12 01:48:12 +13:00
"sha2",
]
[[package]]
name = "proc-macro2"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2022-07-17 12:30:28 +12:00
dependencies = [
"proc-macro2",
2022-07-17 12:30:28 +12:00
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "rustc-demangle"
2023-07-21 18:21:23 +12:00
version = "0.1.23"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 18:21:23 +12:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-08-22 11:30:39 +12:00
2023-03-14 17:48:57 +13:00
[[package]]
name = "rustix"
2024-02-09 11:40:43 +13:00
version = "0.38.31"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 11:40:43 +13:00
checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
2023-03-14 17:48:57 +13:00
dependencies = [
"bitflags",
"errno",
"libc",
"linux-raw-sys",
2023-12-08 01:05:59 +13:00
"windows-sys 0.52.0",
2023-03-14 17:48:57 +13:00
]
2022-08-04 17:38:00 +12:00
[[package]]
2023-01-12 01:48:12 +13:00
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2022-08-04 17:38:00 +12:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
2022-08-04 17:38:00 +12:00
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "smawk"
version = "0.3.2"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
2022-08-22 11:30:39 +12:00
[[package]]
name = "supports-color"
version = "3.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9829b314621dfc575df4e409e79f9d6a66a3bd707ab73f23cb4aa3a854ac854f"
2022-08-22 11:30:39 +12:00
dependencies = [
"is_ci",
]
[[package]]
name = "supports-hyperlinks"
version = "3.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c0a1e5168041f5f3ff68ff7d95dcb9c8749df29f6e7e89ada40dd4c9de404ee"
2022-08-22 11:30:39 +12:00
[[package]]
name = "supports-unicode"
version = "3.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
2022-08-22 11:30:39 +12:00
2023-06-09 18:03:52 +12:00
[[package]]
name = "syn"
version = "2.0.48"
2023-06-09 18:03:52 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
2023-03-18 14:48:54 +13:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-08-22 11:30:39 +12:00
[[package]]
name = "terminal_size"
version = "0.3.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
2022-08-22 11:30:39 +12:00
dependencies = [
"rustix",
"windows-sys 0.48.0",
2022-08-22 11:30:39 +12:00
]
[[package]]
name = "textwrap"
version = "0.16.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
2022-08-22 11:30:39 +12:00
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "ucd-trie"
2023-07-21 18:21:23 +12:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 18:21:23 +12:00
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-08-22 11:30:39 +12:00
[[package]]
name = "unicode-linebreak"
version = "0.1.5"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
2022-08-22 11:30:39 +12:00
[[package]]
name = "unicode-width"
version = "0.1.11"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2022-08-22 11:30:39 +12:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-08-22 11:30:39 +12:00
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows-sys"
2023-07-21 18:21:23 +12:00
version = "0.48.0"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 18:21:23 +12:00
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2023-03-14 17:48:57 +13:00
dependencies = [
2023-12-08 01:05:59 +13:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.0",
2023-03-14 17:48:57 +13:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-03-14 17:48:57 +13:00
dependencies = [
2023-12-08 01:05:59 +13:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
2023-03-14 17:48:57 +13:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-03-14 17:48:57 +13:00
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2023-03-14 17:48:57 +13:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-12-08 01:05:59 +13:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"