update-projects.nvim/Cargo.lock

656 lines
17 KiB
Plaintext
Raw Normal View History

2022-10-14 22:28:27 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
dependencies = [
"memchr",
]
2023-03-28 20:25:25 +02:00
[[package]]
name = "anstream"
2023-04-13 18:22:39 +02:00
version = "0.3.0"
2023-03-28 20:25:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371"
2023-03-28 20:25:25 +02:00
dependencies = [
"anstyle",
"anstyle-parse",
2023-04-13 18:22:39 +02:00
"anstyle-query",
2023-03-28 20:25:25 +02:00
"anstyle-wincon",
2023-04-13 18:22:39 +02:00
"colorchoice",
2023-03-28 20:25:25 +02:00
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-04-13 18:22:39 +02:00
version = "1.0.0"
2023-03-28 20:25:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
2023-03-28 20:25:25 +02:00
[[package]]
name = "anstyle-parse"
2023-04-13 18:22:39 +02:00
version = "0.2.0"
2023-03-28 20:25:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
2023-03-28 20:25:25 +02:00
dependencies = [
"utf8parse",
]
2023-04-13 18:22:39 +02:00
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
2023-03-28 20:25:25 +02:00
[[package]]
name = "anstyle-wincon"
2023-04-13 18:22:39 +02:00
version = "1.0.0"
2023-03-28 20:25:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd"
2023-03-28 20:25:25 +02:00
dependencies = [
"anstyle",
2023-04-13 18:22:39 +02:00
"windows-sys 0.48.0",
2023-03-28 20:25:25 +02:00
]
2022-10-14 23:50:17 +02:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2022-10-14 22:39:16 +02:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-11-24 18:48:55 +01:00
[[package]]
name = "cc"
version = "1.0.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
2022-10-14 23:50:17 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-10-14 22:39:16 +02:00
[[package]]
name = "clap"
2023-04-13 18:22:39 +02:00
version = "4.2.2"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "9b802d85aaf3a1cdb02b224ba472ebdea62014fccfcb269b95a4d76443b5ee5a"
2022-10-14 22:39:16 +02:00
dependencies = [
2023-03-28 20:25:25 +02:00
"clap_builder",
2022-10-14 22:39:16 +02:00
"clap_derive",
"once_cell",
2023-03-28 20:25:25 +02:00
]
[[package]]
name = "clap_builder"
2023-04-13 18:22:39 +02:00
version = "4.2.2"
2023-03-28 20:25:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "14a1a858f532119338887a4b8e1af9c60de8249cd7bafd68036a489e261e37b6"
2023-03-28 20:25:25 +02:00
dependencies = [
"anstream",
"anstyle",
"bitflags",
"clap_lex",
2022-10-14 22:39:16 +02:00
"strsim",
]
[[package]]
name = "clap_derive"
2023-03-28 20:25:25 +02:00
version = "4.2.0"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
2022-10-14 22:39:16 +02:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2023-03-28 20:25:25 +02:00
version = "0.4.1"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
[[package]]
2023-04-13 18:22:39 +02:00
name = "colorchoice"
2023-03-28 20:25:25 +02:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 18:22:39 +02:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-10-14 22:39:16 +02:00
2022-10-14 23:50:17 +02:00
[[package]]
name = "crossbeam"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
dependencies = [
"cfg-if",
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
dependencies = [
"cfg-if",
]
[[package]]
name = "either"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2022-11-24 18:48:55 +01:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-10-14 22:28:27 +02:00
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
2022-10-14 22:39:16 +02:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2022-11-24 18:48:55 +01:00
[[package]]
name = "hermit-abi"
2023-03-28 20:25:25 +02:00
version = "0.3.1"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2022-11-24 18:48:55 +01:00
2022-10-14 22:28:27 +02:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2022-11-24 18:48:55 +01:00
[[package]]
name = "io-lifetimes"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87"
dependencies = [
"libc",
2023-03-28 20:25:25 +02:00
"windows-sys 0.42.0",
2022-11-24 18:48:55 +01:00
]
[[package]]
name = "is-terminal"
2023-03-28 20:25:25 +02:00
version = "0.4.5"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e"
2022-11-24 18:48:55 +01:00
dependencies = [
2023-03-28 20:25:25 +02:00
"hermit-abi 0.3.1",
2022-11-24 18:48:55 +01:00
"io-lifetimes",
"rustix",
2023-03-28 20:25:25 +02:00
"windows-sys 0.45.0",
2022-11-24 18:48:55 +01:00
]
2022-10-14 23:50:17 +02:00
[[package]]
name = "jwalk"
2022-12-15 16:12:27 +01:00
version = "0.8.1"
2022-10-14 23:50:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-15 16:12:27 +01:00
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
2022-10-14 23:50:17 +02:00
dependencies = [
"crossbeam",
"rayon",
]
2022-10-14 22:39:16 +02:00
[[package]]
name = "libc"
version = "0.2.135"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
2022-11-24 18:48:55 +01:00
[[package]]
name = "linux-raw-sys"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
2022-10-14 22:28:27 +02:00
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2022-10-14 23:50:17 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
2022-11-24 18:48:55 +01:00
"hermit-abi 0.1.19",
2022-10-14 23:50:17 +02:00
"libc",
]
2022-10-14 22:28:27 +02:00
[[package]]
name = "once_cell"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2022-10-14 22:39:16 +02:00
[[package]]
name = "proc-macro2"
2023-03-23 18:47:23 +01:00
version = "1.0.53"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 18:47:23 +01:00
checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73"
2022-10-14 22:39:16 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2023-03-23 18:47:23 +01:00
version = "1.0.26"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 18:47:23 +01:00
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2022-10-14 22:39:16 +02:00
dependencies = [
"proc-macro2",
]
2022-10-14 23:50:17 +02:00
[[package]]
name = "rayon"
version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2022-10-14 22:28:27 +02:00
[[package]]
name = "regex"
2023-03-28 20:25:25 +02:00
version = "1.7.3"
2022-10-14 22:28:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
2022-10-14 22:28:27 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-03-21 20:22:08 +01:00
version = "0.6.29"
2022-10-14 22:28:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-21 20:22:08 +01:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-10-14 22:28:27 +02:00
2022-11-24 18:48:55 +01:00
[[package]]
name = "rustix"
2022-12-15 16:12:27 +01:00
version = "0.36.5"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-15 16:12:27 +01:00
checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588"
2022-11-24 18:48:55 +01:00
dependencies = [
2023-03-25 01:09:28 +01:00
"bitflags",
2022-11-24 18:48:55 +01:00
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-03-28 20:25:25 +02:00
"windows-sys 0.42.0",
2022-11-24 18:48:55 +01:00
]
2022-10-14 22:28:27 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2022-10-14 23:50:17 +02:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-10-14 22:39:16 +02:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2023-03-23 18:47:23 +01:00
version = "2.0.8"
2022-10-14 22:39:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 18:47:23 +01:00
checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9"
2022-10-14 22:39:16 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2022-10-14 22:28:27 +02:00
[[package]]
name = "update-projects"
version = "0.1.0"
dependencies = [
2022-10-14 22:39:16 +02:00
"clap",
2022-10-14 22:28:27 +02:00
"eyre",
2022-10-14 23:50:17 +02:00
"jwalk",
2022-10-14 22:28:27 +02:00
"regex",
"walkdir",
]
2023-03-28 20:25:25 +02:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-10-14 22:28:27 +02:00
[[package]]
name = "walkdir"
2023-03-16 22:39:50 +01:00
version = "2.3.3"
2022-10-14 22:28:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-16 22:39:50 +01:00
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
2022-10-14 22:28:27 +02:00
dependencies = [
"same-file",
"winapi-util",
]
[[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-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-13 18:22:39 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2022-11-24 18:48:55 +01:00
]
2023-03-28 20:25:25 +02:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-13 18:22:39 +02:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
2023-03-28 20:25:25 +02:00
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
2023-04-13 18:22:39 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2023-03-28 20:25:25 +02:00
]
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_i686_gnu"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_i686_msvc"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-11-24 18:48:55 +01:00
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-11-24 18:48:55 +01:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-28 20:25:25 +02:00
version = "0.42.2"
2022-11-24 18:48:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-28 20:25:25 +02:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-04-13 18:22:39 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"