2020-03-09 19:49:45 +00:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-07-29 03:50:40 +00:00
|
|
|
version = 3
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
|
|
|
version = "0.7.18"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "anyhow"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.0.53"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0"
|
2020-10-18 09:22:13 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.11.1"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "fb98f10f371286b177db5eeb9a6e5396609555686a35e1d4f7b9a9c6d8af0139"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"askama_derive",
|
|
|
|
"askama_escape",
|
|
|
|
"askama_shared",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2020-03-10 18:32:40 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "askama_derive"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.11.2"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "87bf87e6e8b47264efa9bde63d6225c6276a52e05e91bf37eaa8afd0032d6b71"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"askama_shared",
|
|
|
|
"proc-macro2",
|
|
|
|
"syn",
|
|
|
|
]
|
2020-03-10 18:32:40 +00:00
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "askama_escape"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.10.3"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "askama_shared"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.12.1"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "e3d372b233d121e841b4cc5dc716538755e338ca902b3e12ac131ffb6b9d5fbf"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"askama_escape",
|
2022-02-16 22:46:45 +00:00
|
|
|
"mime",
|
|
|
|
"mime_guess",
|
2020-10-18 09:22:13 +00:00
|
|
|
"nom",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "assert_cmd"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "2.0.4"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
2021-03-29 15:44:30 +00:00
|
|
|
"bstr",
|
2020-10-18 09:22:13 +00:00
|
|
|
"doc-comment",
|
|
|
|
"predicates",
|
|
|
|
"predicates-core",
|
|
|
|
"predicates-tree",
|
|
|
|
"wait-timeout",
|
|
|
|
]
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "1.1.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bincode"
|
2021-04-28 20:01:00 +00:00
|
|
|
version = "1.3.3"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-04-28 20:01:00 +00:00
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"serde",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-08-31 10:59:57 +00:00
|
|
|
version = "1.3.2"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-31 10:59:57 +00:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
2021-03-29 15:44:30 +00:00
|
|
|
name = "bstr"
|
2021-10-05 10:26:04 +00:00
|
|
|
version = "0.2.17"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-05 10:26:04 +00:00
|
|
|
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
|
2021-03-29 15:44:30 +00:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"memchr",
|
|
|
|
"regex-automata",
|
|
|
|
]
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "3.1.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "e5f1fea81f183005ced9e59cdb01737ef2423956dac5a6d731b06b2ecfaa3467"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"atty",
|
|
|
|
"bitflags",
|
|
|
|
"clap_derive",
|
|
|
|
"indexmap",
|
|
|
|
"lazy_static",
|
|
|
|
"os_str_bytes",
|
|
|
|
"strsim",
|
|
|
|
"termcolor",
|
|
|
|
"textwrap",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-01-03 00:22:55 +00:00
|
|
|
name = "clap_complete"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "3.1.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "23eec4dd324308f49d8bf86a2732078c34d57955fec1e1d865554fc37c15d420"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
2022-01-03 00:22:55 +00:00
|
|
|
"clap",
|
2020-10-18 09:22:13 +00:00
|
|
|
]
|
2020-03-09 19:49:45 +00:00
|
|
|
|
2021-05-03 21:03:23 +00:00
|
|
|
[[package]]
|
2022-01-03 00:22:55 +00:00
|
|
|
name = "clap_complete_fig"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "3.1.0"
|
2021-05-03 21:03:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "5c11f6f44afea4aee21bb57a5297879c88ac8dc97224fbbbe796edd60a098f0e"
|
2021-05-03 21:03:23 +00:00
|
|
|
dependencies = [
|
|
|
|
"clap",
|
2022-01-03 00:22:55 +00:00
|
|
|
"clap_complete",
|
2021-05-03 21:03:23 +00:00
|
|
|
]
|
|
|
|
|
2021-10-20 22:23:20 +00:00
|
|
|
[[package]]
|
2022-01-03 00:22:55 +00:00
|
|
|
name = "clap_derive"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "3.1.0"
|
2021-10-20 22:23:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "5fd1122e63869df2cb309f449da1ad54a7c6dfeb7c7e6ccd8e0825d9eb93bb72"
|
2021-10-20 22:23:20 +00:00
|
|
|
dependencies = [
|
2022-01-03 00:22:55 +00:00
|
|
|
"heck",
|
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2021-10-20 22:23:20 +00:00
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.8.7"
|
2021-10-11 20:05:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6"
|
2021-10-11 20:05:24 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"lazy_static",
|
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
2021-07-29 03:50:40 +00:00
|
|
|
name = "difflib"
|
|
|
|
version = "0.4.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-07-29 03:50:40 +00:00
|
|
|
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
2021-11-30 21:48:33 +00:00
|
|
|
name = "dirs"
|
|
|
|
version = "4.0.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-30 21:48:33 +00:00
|
|
|
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2021-11-30 21:48:33 +00:00
|
|
|
"dirs-sys",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2021-11-30 21:48:33 +00:00
|
|
|
name = "dirs-sys"
|
|
|
|
version = "0.3.6"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-30 21:48:33 +00:00
|
|
|
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"libc",
|
|
|
|
"redox_users",
|
|
|
|
"winapi",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2020-04-09 18:43:16 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "doc-comment"
|
|
|
|
version = "0.3.3"
|
2020-04-09 18:43:16 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
2020-04-09 18:43:16 +00:00
|
|
|
|
2020-05-15 14:10:54 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "dunce"
|
2021-06-10 03:15:59 +00:00
|
|
|
version = "1.0.2"
|
2020-05-15 14:10:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-06-10 03:15:59 +00:00
|
|
|
checksum = "453440c271cf5577fd2a40e4942540cb7d0d2f85e27c8d07dd0023c925a67541"
|
2020-05-15 14:10:54 +00:00
|
|
|
|
2021-07-29 03:50:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "either"
|
|
|
|
version = "1.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
|
|
|
|
2022-01-20 21:44:28 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.7.0"
|
2022-01-20 21:44:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
|
2022-01-20 21:44:28 +00:00
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
|
|
|
version = "1.0.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "0.2.4"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2021-03-29 15:44:30 +00:00
|
|
|
"cfg-if",
|
2020-10-18 09:22:13 +00:00
|
|
|
"libc",
|
2021-06-18 07:30:55 +00:00
|
|
|
"wasi",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2020-09-15 21:20:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "globset"
|
|
|
|
version = "0.4.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
|
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"bstr",
|
|
|
|
"fnv",
|
|
|
|
"log",
|
|
|
|
"regex",
|
|
|
|
]
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2021-07-29 03:50:40 +00:00
|
|
|
version = "0.11.2"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-07-29 03:50:40 +00:00
|
|
|
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
2020-09-15 21:20:58 +00:00
|
|
|
|
2020-03-10 18:32:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "0.4.0"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
2020-03-10 18:32:40 +00:00
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2021-07-29 03:50:40 +00:00
|
|
|
version = "0.1.19"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-07-29 03:50:40 +00:00
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ignore"
|
|
|
|
version = "0.4.18"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
|
|
|
|
dependencies = [
|
|
|
|
"crossbeam-utils",
|
|
|
|
"globset",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"memchr",
|
|
|
|
"regex",
|
|
|
|
"same-file",
|
|
|
|
"thread_local",
|
|
|
|
"walkdir",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "1.8.0"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"hashbrown",
|
2020-03-27 11:41:26 +00:00
|
|
|
]
|
|
|
|
|
2022-01-20 21:44:28 +00:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
|
|
|
version = "0.1.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2021-07-29 03:50:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2021-12-20 15:59:11 +00:00
|
|
|
version = "0.10.3"
|
2021-07-29 03:50:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-20 15:59:11 +00:00
|
|
|
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
|
2021-07-29 03:50:40 +00:00
|
|
|
dependencies = [
|
|
|
|
"either",
|
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.2.118"
|
2020-03-27 11:41:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "06e509672465a0504304aa87f9f176f2b2b716ed8fb105ebe5c02dc6dce96a94"
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
|
|
|
version = "0.4.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2021-08-31 10:59:57 +00:00
|
|
|
version = "2.4.1"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-31 10:59:57 +00:00
|
|
|
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2022-02-16 22:46:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mime"
|
|
|
|
version = "0.3.16"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mime_guess"
|
|
|
|
version = "2.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
|
|
|
dependencies = [
|
|
|
|
"mime",
|
|
|
|
"unicase",
|
|
|
|
]
|
|
|
|
|
2021-12-20 15:59:11 +00:00
|
|
|
[[package]]
|
|
|
|
name = "minimal-lexical"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "nom"
|
2021-12-20 15:59:11 +00:00
|
|
|
version = "7.1.0"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-20 15:59:11 +00:00
|
|
|
checksum = "1b1d11e1ef389c76fe5b81bcaf2ea32cf88b62bc494e19f493d0b30e7a930109"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
2021-12-20 15:59:11 +00:00
|
|
|
"minimal-lexical",
|
2020-10-18 09:22:13 +00:00
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2020-11-10 19:11:26 +00:00
|
|
|
version = "0.2.14"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-10 19:11:26 +00:00
|
|
|
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2021-12-20 15:59:11 +00:00
|
|
|
version = "1.9.0"
|
2021-10-11 20:05:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-20 15:59:11 +00:00
|
|
|
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
|
2021-10-11 20:05:24 +00:00
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ordered-float"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "2.10.0"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
2021-12-20 15:59:11 +00:00
|
|
|
version = "6.0.0"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-20 15:59:11 +00:00
|
|
|
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
|
2021-10-20 18:31:06 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
2020-03-27 11:41:26 +00:00
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "predicates"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "2.1.1"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
2021-07-29 03:50:40 +00:00
|
|
|
"difflib",
|
|
|
|
"itertools",
|
2020-10-18 09:22:13 +00:00
|
|
|
"predicates-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "predicates-core"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "1.0.3"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb"
|
2020-10-18 09:22:13 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "predicates-tree"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "1.0.5"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032"
|
2020-10-18 09:22:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"predicates-core",
|
2021-10-11 20:05:24 +00:00
|
|
|
"termtree",
|
2020-10-18 09:22:13 +00:00
|
|
|
]
|
2020-03-29 06:25:21 +00:00
|
|
|
|
2020-03-10 18:32:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
2020-10-01 07:59:20 +00:00
|
|
|
version = "1.0.4"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
2020-03-10 18:32:40 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"proc-macro-error-attr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"version_check",
|
2020-03-10 18:32:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
2020-10-01 07:59:20 +00:00
|
|
|
version = "1.0.4"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
2020-03-10 18:32:40 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"version_check",
|
2020-03-10 18:32:40 +00:00
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2022-01-03 00:22:55 +00:00
|
|
|
version = "1.0.36"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 00:22:55 +00:00
|
|
|
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"unicode-xid",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.0.15"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"proc-macro2",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2020-03-29 06:25:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "0.8.5"
|
2020-03-29 06:25:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2020-03-29 06:25:21 +00:00
|
|
|
dependencies = [
|
2021-06-18 07:30:55 +00:00
|
|
|
"rand_core",
|
2020-03-29 06:25:21 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
2021-06-18 07:30:55 +00:00
|
|
|
version = "0.6.3"
|
2020-03-29 06:25:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-06-18 07:30:55 +00:00
|
|
|
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
2020-03-29 06:25:21 +00:00
|
|
|
dependencies = [
|
2021-06-18 07:30:55 +00:00
|
|
|
"getrandom",
|
2020-03-29 06:25:21 +00:00
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2021-08-15 11:56:56 +00:00
|
|
|
version = "0.2.10"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-15 11:56:56 +00:00
|
|
|
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
|
2021-03-29 15:44:30 +00:00
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
]
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "redox_users"
|
2021-03-29 15:44:30 +00:00
|
|
|
version = "0.4.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-03-29 15:44:30 +00:00
|
|
|
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2021-06-18 07:30:55 +00:00
|
|
|
"getrandom",
|
2020-10-18 09:22:13 +00:00
|
|
|
"redox_syscall",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
|
|
|
version = "1.5.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
|
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
2021-03-29 15:44:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
2021-06-10 03:15:59 +00:00
|
|
|
version = "0.1.10"
|
2021-03-29 15:44:30 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-06-10 03:15:59 +00:00
|
|
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
2021-03-29 15:44:30 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
|
|
|
version = "0.6.25"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "remove_dir_all"
|
|
|
|
version = "0.5.3"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"winapi",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2021-05-17 16:16:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rstest"
|
2021-12-20 15:59:11 +00:00
|
|
|
version = "0.12.0"
|
2021-05-17 16:16:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-20 15:59:11 +00:00
|
|
|
checksum = "d912f35156a3f99a66ee3e11ac2e0b3f34ac85a07e05263d05a7e2c8810d616f"
|
2021-05-17 16:16:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"rustc_version",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
2021-08-05 13:52:13 +00:00
|
|
|
version = "0.4.0"
|
2021-05-17 16:16:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-05 13:52:13 +00:00
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
2021-05-17 16:16:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"semver",
|
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +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",
|
|
|
|
]
|
|
|
|
|
2020-11-10 19:11:26 +00:00
|
|
|
[[package]]
|
2021-05-17 16:16:42 +00:00
|
|
|
name = "semver"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "1.0.5"
|
2020-11-10 19:11:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "0486718e92ec9a68fbed73bb5ef687d71103b142595b406835649bebd33f72c7"
|
2020-11-10 19:11:26 +00:00
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.0.136"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"serde_derive",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.0.136"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "shell-words"
|
2022-02-16 22:46:45 +00:00
|
|
|
version = "1.1.0"
|
2021-10-11 20:05:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 22:46:45 +00:00
|
|
|
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
2021-10-11 20:05:24 +00:00
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2020-10-18 09:22:13 +00:00
|
|
|
version = "0.10.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
2020-03-10 18:32:40 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "syn"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "1.0.86"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
|
2020-03-10 18:32:40 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
2020-03-10 18:32:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "tempfile"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "3.3.0"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
2020-03-10 18:32:40 +00:00
|
|
|
dependencies = [
|
2021-03-29 15:44:30 +00:00
|
|
|
"cfg-if",
|
2022-01-20 21:44:28 +00:00
|
|
|
"fastrand",
|
2020-10-18 09:22:13 +00:00
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"remove_dir_all",
|
|
|
|
"winapi",
|
2020-03-10 18:32:40 +00:00
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
2020-10-18 09:22:13 +00:00
|
|
|
name = "termcolor"
|
2021-03-29 15:44:30 +00:00
|
|
|
version = "1.1.2"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-03-29 15:44:30 +00:00
|
|
|
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"winapi-util",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "termtree"
|
2022-01-20 21:44:28 +00:00
|
|
|
version = "0.2.4"
|
2021-10-11 20:05:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-20 21:44:28 +00:00
|
|
|
checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
|
2021-10-11 20:05:24 +00:00
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
2021-08-15 11:56:56 +00:00
|
|
|
version = "0.14.2"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-15 11:56:56 +00:00
|
|
|
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
2021-12-24 09:29:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
|
|
|
version = "1.0.30"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
|
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
|
|
|
version = "1.0.30"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
[[package]]
|
2021-10-11 20:05:24 +00:00
|
|
|
name = "thread_local"
|
2022-02-01 22:25:21 +00:00
|
|
|
version = "1.1.4"
|
2020-10-18 09:22:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-01 22:25:21 +00:00
|
|
|
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
|
2021-10-11 20:05:24 +00:00
|
|
|
dependencies = [
|
|
|
|
"once_cell",
|
|
|
|
]
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2022-02-16 22:46:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicase"
|
|
|
|
version = "2.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
|
|
|
dependencies = [
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
2021-05-01 21:56:12 +00:00
|
|
|
version = "0.2.2"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-05-01 21:56:12 +00:00
|
|
|
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
2020-03-29 06:25:21 +00:00
|
|
|
|
2020-03-10 18:32:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-01-03 00:22:55 +00:00
|
|
|
version = "0.9.4"
|
2020-03-10 18:32:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 00:22:55 +00:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2020-10-18 09:22:13 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wait-timeout"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2020-03-10 18:32:40 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "walkdir"
|
|
|
|
version = "2.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
|
|
|
|
dependencies = [
|
|
|
|
"same-file",
|
|
|
|
"winapi",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2021-03-29 15:44:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.10.2+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-07-03 17:36:24 +00:00
|
|
|
version = "0.3.9"
|
2020-03-09 19:49:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2020-03-09 19:49:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
2020-03-09 19:49:45 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-18 09:22:13 +00:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2020-03-09 19:49:45 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "xtask"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"clap",
|
|
|
|
"ignore",
|
|
|
|
"shell-words",
|
|
|
|
]
|
|
|
|
|
2020-03-09 19:49:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zoxide"
|
2021-12-24 22:33:18 +00:00
|
|
|
version = "0.8.0"
|
2020-03-09 19:49:45 +00:00
|
|
|
dependencies = [
|
2020-10-18 09:22:13 +00:00
|
|
|
"anyhow",
|
2020-10-26 17:55:04 +00:00
|
|
|
"askama",
|
|
|
|
"assert_cmd",
|
|
|
|
"bincode",
|
2020-10-18 09:22:13 +00:00
|
|
|
"clap",
|
2022-01-03 00:22:55 +00:00
|
|
|
"clap_complete",
|
|
|
|
"clap_complete_fig",
|
2021-11-30 21:48:33 +00:00
|
|
|
"dirs",
|
2020-10-18 09:22:13 +00:00
|
|
|
"dunce",
|
|
|
|
"glob",
|
|
|
|
"ordered-float",
|
2021-06-18 07:30:55 +00:00
|
|
|
"rand",
|
2021-05-17 16:16:42 +00:00
|
|
|
"rstest",
|
2020-10-18 09:22:13 +00:00
|
|
|
"serde",
|
|
|
|
"tempfile",
|
2021-12-24 09:29:42 +00:00
|
|
|
"thiserror",
|
2020-10-18 09:22:13 +00:00
|
|
|
]
|