outrun/Cargo.lock

566 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"
2024-03-03 18:15:17 +13:00
version = "1.0.88"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc"
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.1.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baed61d13cc3723ee6dbed730a82bfacedc60a85d81da2d77e9c3e8ebc0b504a"
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.1.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301c3f54f98abc6c212ee722f5e5c62e472a334415840669e356f04850051ec"
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.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8"
dependencies = [
"memchr",
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293"
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"
2024-03-03 18:15:17 +13:00
version = "2.0.52"
2023-06-09 18:03:52 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
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"
2024-03-03 18:15:17 +13:00
version = "0.16.1"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
2022-08-22 11:30:39 +12:00
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
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 = [
2024-03-03 18:15:17 +13:00
"windows-targets 0.52.4",
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
2023-12-08 01:05:59 +13:00
dependencies = [
2024-03-03 18:15:17 +13:00
"windows_aarch64_gnullvm 0.52.4",
"windows_aarch64_msvc 0.52.4",
"windows_i686_gnu 0.52.4",
"windows_i686_msvc 0.52.4",
"windows_x86_64_gnu 0.52.4",
"windows_x86_64_gnullvm 0.52.4",
"windows_x86_64_msvc 0.52.4",
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
2023-12-08 01:05:59 +13:00
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"
2024-03-03 18:15:17 +13:00
version = "0.52.4"
2023-12-08 01:05:59 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-03 18:15:17 +13:00
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"