outrun/Cargo.lock

617 lines
16 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"
2023-12-08 01:05:59 +13:00
version = "2.4.1"
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 = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
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"
2023-12-08 01:05:59 +13:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 01:05:59 +13:00
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
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 = "hermit-abi"
version = "0.3.3"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-03-14 17:48:57 +13:00
[[package]]
name = "is-terminal"
2023-07-21 18:21:23 +12:00
version = "0.4.9"
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 = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
2023-03-14 17:48:57 +13:00
dependencies = [
"hermit-abi",
"rustix",
2023-12-08 01:05:59 +13:00
"windows-sys 0.48.0",
2022-08-22 11:30:39 +12:00
]
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
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"
2023-12-16 13:09:12 +13:00
version = "0.2.151"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 13:09:12 +13:00
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
2023-03-14 17:48:57 +13:00
[[package]]
name = "linux-raw-sys"
2023-12-08 01:05:59 +13:00
version = "0.4.12"
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 = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
2023-03-14 17:48:57 +13:00
2022-08-22 11:30:39 +12:00
[[package]]
name = "memchr"
version = "2.6.4"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
2022-08-22 11:30:39 +12:00
[[package]]
name = "miette"
version = "5.10.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e"
2022-08-22 11:30:39 +12:00
dependencies = [
"backtrace",
"backtrace-ext",
2023-03-14 17:48:57 +13:00
"is-terminal",
2022-08-22 11:30:39 +12:00
"miette-derive",
"once_cell",
"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 = "5.10.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
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"
2023-07-21 18:21:23 +12:00
version = "0.7.1"
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 = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2022-08-22 11:30:39 +12:00
dependencies = [
"adler",
]
[[package]]
name = "object"
version = "0.32.1"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
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"
2022-12-28 18:47:47 +13:00
version = "3.5.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-28 18:47:47 +13:00
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2022-08-22 11:30:39 +12:00
[[package]]
name = "pest"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5"
dependencies = [
"memchr",
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6"
dependencies = [
"once_cell",
"pest",
2023-01-12 01:48:12 +13:00
"sha2",
]
[[package]]
name = "proc-macro2"
2023-12-08 01:05:59 +13:00
version = "1.0.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 01:05:59 +13:00
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
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"
2023-12-16 13:09:12 +13:00
version = "0.38.28"
2023-03-14 17:48:57 +13:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 13:09:12 +13:00
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
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 = "2.1.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
2022-08-22 11:30:39 +12:00
dependencies = [
2023-03-14 17:48:57 +13:00
"is-terminal",
2022-08-22 11:30:39 +12:00
"is_ci",
]
[[package]]
name = "supports-hyperlinks"
2023-07-21 18:21:23 +12:00
version = "2.1.0"
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 = "f84231692eb0d4d41e4cdd0cabfdd2e6cd9e255e65f80c9aa7c98dd502b4233d"
2022-08-22 11:30:39 +12:00
dependencies = [
2023-03-14 17:48:57 +13:00
"is-terminal",
2022-08-22 11:30:39 +12:00
]
[[package]]
name = "supports-unicode"
2023-03-14 17:48:57 +13:00
version = "2.0.0"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 17:48:57 +13:00
checksum = "4b6c2cb240ab5dd21ed4906895ee23fe5a48acdbd15a3ce388e7b62a9b66baf7"
2022-08-22 11:30:39 +12:00
dependencies = [
2023-03-14 17:48:57 +13:00
"is-terminal",
2022-08-22 11:30:39 +12:00
]
2023-06-09 18:03:52 +12:00
[[package]]
name = "syn"
2023-12-16 13:09:12 +13:00
version = "2.0.41"
2023-06-09 18:03:52 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 13:09:12 +13:00
checksum = "44c8b28c477cc3bf0e7966561e3460130e1255f7a1cf71931075f1c5e7a7e269"
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.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "textwrap"
2022-10-25 04:57:58 +13:00
version = "0.15.2"
2022-08-22 11:30:39 +12:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-25 04:57:58 +13:00
checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
2022-08-22 11:30:39 +12:00
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e3de26b0965292219b4287ff031fcba86837900fe9cd2b34ea8ad893c0953d2"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "268026685b2be38d7103e9e507c938a1fcb3d7e6eb15e87870b617bf37b6d581"
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
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
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"