fif/Cargo.lock

1064 lines
28 KiB
Plaintext
Raw Permalink Normal View History

2021-02-04 11:22:19 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-10-05 14:24:08 +00:00
version = 3
2024-01-21 06:55:11 +00:00
[[package]]
name = "aho-corasick"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
dependencies = [
"memchr",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "assert_cmd"
2024-01-21 06:55:11 +00:00
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "d5c2ca00549910ec251e3bd15f87aeeb206c9456b9a77b43ff6c97c54042a472"
dependencies = [
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2021-02-05 09:24:08 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
2021-02-05 09:24:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-02-05 09:24:08 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "bitflags"
2021-12-17 00:05:04 +00:00
version = "1.3.2"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 00:05:04 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-02-04 11:22:19 +00:00
2024-01-21 06:55:11 +00:00
[[package]]
name = "bitflags"
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
[[package]]
name = "bstr"
2024-01-21 06:55:11 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
2024-01-21 06:55:11 +00:00
"lazy_static",
"memchr",
2024-01-21 06:55:11 +00:00
"regex-automata 0.1.10",
]
2021-04-14 09:10:07 +00:00
[[package]]
name = "byteorder"
2024-01-21 06:55:11 +00:00
version = "1.5.0"
2022-09-18 15:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2022-09-18 15:59:48 +00:00
2021-04-14 09:10:07 +00:00
[[package]]
name = "cfb"
2022-09-04 02:47:17 +00:00
version = "0.7.3"
2021-04-14 09:10:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-04 02:47:17 +00:00
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
2021-04-14 09:10:07 +00:00
dependencies = [
"byteorder",
2022-05-19 21:18:57 +00:00
"fnv",
2021-04-14 09:10:07 +00:00
"uuid",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2024-01-21 06:55:11 +00:00
version = "4.1.14"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "906f7fe1da4185b7a282b2bc90172a496f9def1aca4545fe7526810741591e14"
2021-02-04 11:22:19 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"clap_builder",
2021-02-05 09:24:08 +00:00
"clap_derive",
2024-01-21 06:55:11 +00:00
"once_cell",
]
[[package]]
name = "clap_builder"
version = "4.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "351f9ad9688141ed83dfd8f5fb998a06225ef444b48ff4dc43de6d409b7fd10b"
dependencies = [
"bitflags 1.3.2",
"clap_lex",
2023-03-14 20:12:38 +00:00
"is-terminal",
2021-02-05 09:24:08 +00:00
"termcolor",
"terminal_size",
2022-01-01 03:28:45 +00:00
"unicase",
2023-03-14 20:12:38 +00:00
"unicode-width",
2021-02-04 11:22:19 +00:00
]
2021-02-05 09:24:08 +00:00
[[package]]
name = "clap_derive"
2024-01-21 06:55:11 +00:00
version = "4.1.14"
2021-02-05 09:24:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "81d7dc0031c3a59a04fc2ba395c8e2dd463cba1859275f065d225f6122221b45"
2021-02-05 09:24:08 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2024-01-21 06:55:11 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
[[package]]
name = "crossbeam-deque"
2024-01-21 06:55:11 +00:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2024-01-21 06:55:11 +00:00
version = "0.9.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-01-21 06:55:11 +00:00
version = "0.8.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
[[package]]
name = "difflib"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2021-02-04 11:22:19 +00:00
[[package]]
name = "dirs-next"
version = "2.0.0"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2021-02-04 11:22:19 +00:00
dependencies = [
2021-02-14 14:48:08 +00:00
"cfg-if",
"dirs-sys-next",
2021-02-04 11:22:19 +00:00
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2021-02-04 11:22:19 +00:00
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "either"
2024-01-21 06:55:11 +00:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2021-02-04 11:22:19 +00:00
[[package]]
name = "env_logger"
2024-01-21 06:55:11 +00:00
version = "0.10.2"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
2021-02-04 11:22:19 +00:00
dependencies = [
"log",
"termcolor",
]
2022-09-18 15:59:48 +00:00
[[package]]
name = "errno"
2024-01-21 06:55:11 +00:00
version = "0.3.8"
2022-09-18 15:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2022-09-18 15:59:48 +00:00
dependencies = [
"libc",
2024-01-21 06:55:11 +00:00
"windows-sys 0.52.0",
2022-09-18 15:59:48 +00:00
]
2021-02-21 14:07:50 +00:00
[[package]]
name = "exitcode"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193"
2022-01-17 00:25:44 +00:00
[[package]]
name = "fastrand"
2024-01-21 06:55:11 +00:00
version = "2.0.1"
2022-01-17 00:25:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2022-01-17 00:25:44 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "fif"
2024-01-21 06:55:11 +00:00
version = "0.7.1"
2021-02-04 11:22:19 +00:00
dependencies = [
"assert_cmd",
"cfg-if",
2021-02-05 09:24:08 +00:00
"clap",
2021-02-04 11:22:19 +00:00
"env_logger",
2021-02-21 14:07:50 +00:00
"exitcode",
"infer",
2024-01-21 06:55:11 +00:00
"itertools 0.12.0",
2021-02-04 11:22:19 +00:00
"log",
"maplit",
"mime",
"new_mime_guess",
"num_cpus",
"once_cell",
2021-11-22 22:38:43 +00:00
"parking_lot",
"rand",
"rayon",
"regex",
2021-05-05 22:57:42 +00:00
"serde",
"serde_json",
2021-02-04 11:22:19 +00:00
"smartstring",
"snailquote",
"tempfile",
2021-02-04 11:22:19 +00:00
"walkdir",
"xdg-mime",
]
2022-05-19 21:18:57 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2021-02-04 11:22:19 +00:00
[[package]]
name = "getrandom"
2024-01-21 06:55:11 +00:00
version = "0.2.12"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
2021-02-04 11:22:19 +00:00
dependencies = [
2021-02-14 14:48:08 +00:00
"cfg-if",
2021-02-04 11:22:19 +00:00
"libc",
"wasi",
]
[[package]]
name = "glob"
2023-03-14 20:12:38 +00:00
version = "0.3.1"
2021-07-06 14:24:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 20:12:38 +00:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2021-07-06 14:24:02 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "heck"
2023-03-14 20:12:38 +00:00
version = "0.4.1"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 20:12:38 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2021-02-04 11:22:19 +00:00
2023-01-01 21:36:11 +00:00
[[package]]
name = "hermit-abi"
2024-01-21 06:55:11 +00:00
version = "0.3.4"
2021-02-05 09:24:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
2021-02-05 09:24:08 +00:00
[[package]]
name = "infer"
2023-03-14 20:12:38 +00:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 20:12:38 +00:00
checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc"
2021-04-14 09:10:07 +00:00
dependencies = [
"cfb",
]
2022-09-18 15:59:48 +00:00
[[package]]
name = "io-lifetimes"
2024-01-21 06:55:11 +00:00
version = "1.0.11"
2022-09-18 15:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-01-01 21:36:11 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"hermit-abi",
2023-01-01 21:36:11 +00:00
"libc",
2024-01-21 06:55:11 +00:00
"windows-sys 0.48.0",
2023-03-14 20:12:38 +00:00
]
[[package]]
name = "is-terminal"
2024-01-21 06:55:11 +00:00
version = "0.4.10"
2023-03-14 20:12:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
2023-03-14 20:12:38 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"hermit-abi",
"rustix 0.38.30",
"windows-sys 0.52.0",
2023-01-01 21:36:11 +00:00
]
2022-09-18 15:59:48 +00:00
[[package]]
name = "itertools"
2023-01-01 21:36:11 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-01 21:36:11 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
2024-01-21 06:55:11 +00:00
[[package]]
name = "itertools"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
dependencies = [
"either",
]
2021-05-05 22:57:42 +00:00
[[package]]
name = "itoa"
2024-01-21 06:55:11 +00:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
name = "lazy_static"
version = "1.4.0"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-02-04 11:22:19 +00:00
[[package]]
name = "lexical-core"
version = "0.7.6"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
2021-02-04 11:22:19 +00:00
dependencies = [
"arrayvec",
2024-01-21 06:55:11 +00:00
"bitflags 1.3.2",
2021-02-14 14:48:08 +00:00
"cfg-if",
2021-02-04 11:22:19 +00:00
"ryu",
"static_assertions",
]
[[package]]
name = "libc"
2024-01-21 06:55:11 +00:00
version = "0.2.152"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
[[package]]
name = "libredox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
dependencies = [
"bitflags 2.4.2",
"libc",
"redox_syscall",
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
2021-11-22 22:38:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2021-11-22 22:38:43 +00:00
2022-09-18 15:59:48 +00:00
[[package]]
name = "linux-raw-sys"
2024-01-21 06:55:11 +00:00
version = "0.4.13"
2022-09-18 15:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
2022-09-18 15:59:48 +00:00
2021-11-22 22:38:43 +00:00
[[package]]
name = "lock_api"
2024-01-21 06:55:11 +00:00
version = "0.4.11"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2021-11-22 22:38:43 +00:00
dependencies = [
2022-04-12 05:07:49 +00:00
"autocfg",
2021-11-22 22:38:43 +00:00
"scopeguard",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "log"
2024-01-21 06:55:11 +00:00
version = "0.4.20"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2021-02-04 11:22:19 +00:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2021-02-04 11:22:19 +00:00
[[package]]
name = "memchr"
2024-01-21 06:55:11 +00:00
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2021-02-04 11:22:19 +00:00
[[package]]
name = "mime"
2024-01-21 06:55:11 +00:00
version = "0.3.17"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-02-04 11:22:19 +00:00
[[package]]
name = "new_mime_guess"
2022-02-26 23:51:43 +00:00
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-26 23:51:43 +00:00
checksum = "c2d684d1b59e0dc07b37e2203ef576987473288f530082512aff850585c61b1f"
2021-02-04 11:22:19 +00:00
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "nom"
2024-01-21 06:55:11 +00:00
version = "5.1.3"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b"
2021-02-04 11:22:19 +00:00
dependencies = [
"lexical-core",
"memchr",
"version_check",
]
[[package]]
name = "num_cpus"
2024-01-21 06:55:11 +00:00
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
2024-01-21 06:55:11 +00:00
"hermit-abi",
"libc",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "once_cell"
2024-01-21 06:55:11 +00:00
version = "1.19.0"
2021-02-05 09:24:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2021-02-05 09:24:08 +00:00
2021-11-22 22:38:43 +00:00
[[package]]
name = "parking_lot"
2022-09-04 02:47:17 +00:00
version = "0.12.1"
2021-11-22 22:38:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-04 02:47:17 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2021-11-22 22:38:43 +00:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-01-21 06:55:11 +00:00
version = "0.9.9"
2021-11-22 22:38:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2021-11-22 22:38:43 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2024-01-21 06:55:11 +00:00
"windows-targets 0.48.5",
]
[[package]]
name = "ppv-lite86"
2023-01-01 21:36:11 +00:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-01 21:36:11 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "predicates"
2023-01-01 21:36:11 +00:00
version = "2.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-01 21:36:11 +00:00
checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
dependencies = [
"difflib",
2024-01-21 06:55:11 +00:00
"itertools 0.10.5",
"predicates-core",
]
[[package]]
name = "predicates-core"
2024-01-21 06:55:11 +00:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
[[package]]
name = "predicates-tree"
2024-01-21 06:55:11 +00:00
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
dependencies = [
"predicates-core",
"termtree",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "proc-macro2"
2024-01-21 06:55:11 +00:00
version = "1.0.78"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
2021-02-04 11:22:19 +00:00
dependencies = [
2022-05-19 21:18:57 +00:00
"unicode-ident",
2021-02-04 11:22:19 +00:00
]
[[package]]
name = "quote"
2024-01-21 06:55:11 +00:00
version = "1.0.35"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2021-02-04 11:22:19 +00:00
dependencies = [
"proc-macro2",
]
[[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"
2021-06-13 06:47:39 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-13 06:47:39 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2022-09-18 15:59:48 +00:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-18 15:59:48 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "rayon"
2024-01-21 06:55:11 +00:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2024-01-21 06:55:11 +00:00
version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "redox_syscall"
2024-01-21 06:55:11 +00:00
version = "0.4.1"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
2024-01-21 06:55:11 +00:00
"bitflags 1.3.2",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "redox_users"
2024-01-21 06:55:11 +00:00
version = "0.4.4"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
2021-02-04 11:22:19 +00:00
dependencies = [
"getrandom",
2024-01-21 06:55:11 +00:00
"libredox",
2022-04-12 05:07:49 +00:00
"thiserror",
2021-02-04 11:22:19 +00:00
]
[[package]]
name = "regex"
2024-01-21 06:55:11 +00:00
version = "1.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
dependencies = [
2024-01-21 06:55:11 +00:00
"aho-corasick",
"memchr",
"regex-automata 0.3.9",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2024-01-21 06:55:11 +00:00
[[package]]
name = "regex-automata"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2024-01-21 06:55:11 +00:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2022-09-18 15:59:48 +00:00
[[package]]
name = "rustix"
2024-01-21 06:55:11 +00:00
version = "0.37.27"
2022-09-18 15:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
2022-09-18 15:59:48 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"bitflags 1.3.2",
2022-09-18 15:59:48 +00:00
"errno",
"io-lifetimes",
"libc",
2024-01-21 06:55:11 +00:00
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
version = "0.38.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
dependencies = [
"bitflags 2.4.2",
"errno",
"libc",
"linux-raw-sys 0.4.13",
"windows-sys 0.52.0",
2022-09-18 15:59:48 +00:00
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "ryu"
2024-01-21 06:55:11 +00:00
version = "1.0.16"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2021-02-04 11:22:19 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "scopeguard"
2024-01-21 06:55:11 +00:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-05-05 22:57:42 +00:00
[[package]]
name = "serde"
2024-01-21 06:55:11 +00:00
version = "1.0.195"
2021-05-05 22:57:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
2021-05-05 22:57:42 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-01-21 06:55:11 +00:00
version = "1.0.195"
2021-05-05 22:57:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
2021-05-05 22:57:42 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2024-01-21 06:55:11 +00:00
version = "1.0.111"
2021-05-05 22:57:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
2021-05-05 22:57:42 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2021-11-22 22:38:43 +00:00
[[package]]
name = "smallvec"
2024-01-21 06:55:11 +00:00
version = "1.13.1"
2021-11-22 22:38:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2021-11-22 22:38:43 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "smartstring"
version = "1.0.1"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
2021-02-04 11:22:19 +00:00
dependencies = [
"autocfg",
2021-02-04 11:22:19 +00:00
"static_assertions",
"version_check",
2021-02-04 11:22:19 +00:00
]
[[package]]
name = "snailquote"
2021-10-20 17:12:10 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-20 17:12:10 +00:00
checksum = "ec62a949bda7f15800481a711909f946e1204f2460f89210eaf7f57730f88f86"
dependencies = [
"thiserror",
"unicode_categories",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "syn"
2024-01-21 06:55:11 +00:00
version = "2.0.48"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
2021-02-04 11:22:19 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-05-19 21:18:57 +00:00
"unicode-ident",
2021-02-04 11:22:19 +00:00
]
[[package]]
name = "tempfile"
2024-01-21 06:55:11 +00:00
version = "3.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
dependencies = [
"cfg-if",
2022-01-17 00:25:44 +00:00
"fastrand",
"redox_syscall",
2024-01-21 06:55:11 +00:00
"rustix 0.38.30",
"windows-sys 0.52.0",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "termcolor"
2024-01-21 06:55:11 +00:00
version = "1.4.1"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2021-02-04 11:22:19 +00:00
dependencies = [
"winapi-util",
]
[[package]]
name = "terminal_size"
2024-01-21 06:55:11 +00:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
dependencies = [
2024-01-21 06:55:11 +00:00
"rustix 0.37.27",
"windows-sys 0.48.0",
]
[[package]]
name = "termtree"
2024-01-21 06:55:11 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
[[package]]
name = "thiserror"
2024-01-21 06:55:11 +00:00
version = "1.0.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-01-21 06:55:11 +00:00
version = "1.0.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "unicase"
2024-01-21 06:55:11 +00:00
version = "2.7.0"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2021-02-04 11:22:19 +00:00
dependencies = [
"version_check",
]
[[package]]
2022-05-19 21:18:57 +00:00
name = "unicode-ident"
2024-01-21 06:55:11 +00:00
version = "1.0.12"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-02-04 11:22:19 +00:00
[[package]]
2022-05-19 21:18:57 +00:00
name = "unicode-width"
2024-01-21 06:55:11 +00:00
version = "0.1.11"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2021-02-04 11:22:19 +00:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2021-04-14 09:10:07 +00:00
[[package]]
name = "uuid"
2024-01-21 06:55:11 +00:00
version = "1.7.0"
2021-04-14 09:10:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
2021-04-14 09:10:07 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "version_check"
version = "0.9.4"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-02-04 11:22:19 +00:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2021-02-04 11:22:19 +00:00
[[package]]
name = "walkdir"
2024-01-21 06:55:11 +00:00
version = "2.4.0"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2021-02-04 11:22:19 +00:00
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "wasi"
2022-09-04 02:47:17 +00:00
version = "0.11.0+wasi-snapshot-preview1"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-04 02:47:17 +00:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-02-04 11:22:19 +00: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-util"
2024-01-21 06:55:11 +00:00
version = "0.1.6"
2021-02-04 11:22:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2021-02-04 11:22:19 +00:00
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-02-03 05:51:20 +00:00
[[package]]
name = "windows-sys"
2024-01-21 06:55:11 +00:00
version = "0.48.0"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2022-02-03 05:51:20 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"windows-targets 0.48.5",
2022-02-03 05:51:20 +00:00
]
2023-03-14 20:12:38 +00:00
[[package]]
name = "windows-sys"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.0",
]
[[package]]
name = "windows-targets"
version = "0.48.5"
2023-03-14 20:12:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-03-14 20:12:38 +00:00
dependencies = [
2024-01-21 06:55:11 +00: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",
2023-03-14 20:12:38 +00:00
]
[[package]]
name = "windows-targets"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
2023-03-14 20:12:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
2023-03-14 20:12:38 +00:00
dependencies = [
2024-01-21 06:55:11 +00:00
"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 20:12:38 +00:00
]
2023-01-01 21:36:11 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2024-01-21 06:55:11 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
2023-01-01 21:36:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2023-01-01 21:36:11 +00:00
2022-02-03 05:51:20 +00:00
[[package]]
name = "windows_aarch64_msvc"
2024-01-21 06:55:11 +00:00
version = "0.48.5"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2022-02-03 05:51:20 +00:00
[[package]]
name = "windows_i686_gnu"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2022-02-03 05:51:20 +00:00
[[package]]
name = "windows_i686_msvc"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2022-02-03 05:51:20 +00:00
[[package]]
name = "windows_x86_64_gnu"
2024-01-21 06:55:11 +00:00
version = "0.48.5"
2023-01-01 21:36:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-01-01 21:36:11 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2022-02-03 05:51:20 +00:00
[[package]]
name = "windows_x86_64_msvc"
2024-01-21 06:55:11 +00:00
version = "0.52.0"
2022-02-03 05:51:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-21 06:55:11 +00:00
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
2022-02-03 05:51:20 +00:00
2021-02-04 11:22:19 +00:00
[[package]]
name = "xdg-mime"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87bf7b69bb50588d70a36e467be29d3df3e8c32580276d62eded9738c1a797aa"
2021-02-04 11:22:19 +00:00
dependencies = [
"dirs-next",
2021-02-04 11:22:19 +00:00
"glob",
"mime",
"nom",
"unicase",
]