zoxide/Cargo.lock

1345 lines
33 KiB
Plaintext
Raw Normal View History

2020-03-09 19:49:45 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
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-04-22 07:41:11 +00:00
version = "1.0.57"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-22 07:41:11 +00:00
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
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
]
[[package]]
2020-10-18 09:22:13 +00:00
name = "askama_derive"
2022-02-16 22:46:45 +00:00
version = "0.11.2"
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-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-03-06 23:37:05 +00:00
version = "0.12.2"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 23:37:05 +00:00
checksum = "bf722b94118a07fcbc6640190f247334027685d4e218b794dbfe17c32bf38ed0"
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
2022-05-19 11:07:25 +00:00
[[package]]
name = "async-attributes"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "async-channel"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
[[package]]
name = "async-global-executor"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c290043c9a95b05d45e952fb6383c67bcb61471f60cfa21e890dba6654234f43"
dependencies = [
"async-channel",
"async-executor",
"async-io",
"async-mutex",
"blocking",
"futures-lite",
"num_cpus",
"once_cell",
]
[[package]]
name = "async-io"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"
dependencies = [
"concurrent-queue",
"futures-lite",
"libc",
"log",
"once_cell",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
"winapi",
]
[[package]]
name = "async-lock"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
dependencies = [
"event-listener",
]
[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
"event-listener",
]
[[package]]
name = "async-std"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52580991739c5cdb36cde8b2a516371c0a3b70dda36d916cc08b82372916808c"
dependencies = [
"async-attributes",
"async-channel",
"async-global-executor",
"async-io",
"async-lock",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"num_cpus",
"once_cell",
"pin-project-lite",
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-task"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30696a84d817107fc028e049980e09d5e140e8da8f1caeb17e8e950658a3cea9"
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
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"
version = "1.3.3"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
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
2022-05-19 11:07:25 +00:00
[[package]]
name = "blocking"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
dependencies = [
"async-channel",
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
"once_cell",
]
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",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "bumpalo"
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
[[package]]
name = "cache-padded"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
[[package]]
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
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-05-19 11:07:25 +00:00
version = "3.1.18"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
2020-03-09 19:49:45 +00:00
dependencies = [
2020-10-18 09:22:13 +00:00
"atty",
"bitflags",
"clap_derive",
2022-04-22 07:41:11 +00:00
"clap_lex",
2020-10-18 09:22:13 +00:00
"indexmap",
"lazy_static",
"strsim",
"termcolor",
"textwrap",
2020-03-09 19:49:45 +00:00
]
[[package]]
2022-01-03 00:22:55 +00:00
name = "clap_complete"
2022-05-19 11:07:25 +00:00
version = "3.1.4"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "da92e6facd8d73c22745a5d3cbb59bdf8e46e3235c923e516527d8e81eec14a4"
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-04-22 07:41:11 +00:00
version = "3.1.5"
2021-05-03 21:03:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-22 07:41:11 +00:00
checksum = "3918ed0e233c37ab6055a2dc4b2bad2e113d44f56675e0140936b9bd253e4505"
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-05-19 11:07:25 +00:00
version = "3.1.18"
2021-10-20 22:23:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "25320346e922cffe59c0bbc5410c8d8784509efb321488971081313cb1e1a33c"
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
]
2022-04-22 07:41:11 +00:00
[[package]]
name = "clap_lex"
2022-05-19 11:07:25 +00:00
version = "0.2.0"
2022-04-22 07:41:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
2022-04-22 07:41:11 +00:00
dependencies = [
"os_str_bytes",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "concurrent-queue"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
dependencies = [
"cache-padded",
]
2021-10-11 20:05:24 +00:00
[[package]]
name = "crossbeam-utils"
2022-04-10 22:11:51 +00:00
version = "0.8.8"
2021-10-11 20:05:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2021-10-11 20:05:24 +00:00
dependencies = [
"cfg-if",
"lazy_static",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "ctor"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
dependencies = [
"quote",
"syn",
]
2020-03-09 19:49:45 +00:00
[[package]]
name = "difflib"
version = "0.4.0"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
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"
2022-04-10 22:11:51 +00:00
version = "0.3.7"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
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
]
[[package]]
2020-10-18 09:22:13 +00:00
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 09:22:13 +00:00
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
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
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2022-05-19 11:07:25 +00:00
[[package]]
name = "event-listener"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
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"
2022-05-19 11:07:25 +00:00
[[package]]
name = "futures"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
[[package]]
name = "futures-executor"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
name = "futures-task"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
[[package]]
name = "futures-timer"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
[[package]]
name = "futures-util"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
2020-03-09 19:49:45 +00:00
[[package]]
name = "getrandom"
2022-04-10 22:11:51 +00:00
version = "0.2.6"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
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",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "gloo-timers"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
2020-10-18 09:22:13 +00:00
[[package]]
name = "hashbrown"
version = "0.11.2"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-09-15 21:20:58 +00:00
[[package]]
name = "heck"
2022-01-20 21:44:28 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-20 21:44:28 +00:00
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2020-03-09 19:49:45 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
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-04-10 22:11:51 +00:00
version = "1.8.1"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
2020-10-18 09:22:13 +00:00
dependencies = [
"autocfg",
"hashbrown",
]
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",
]
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "js-sys"
version = "0.3.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
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-05-19 11:07:25 +00:00
version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2020-10-18 09:22:13 +00:00
2021-10-11 20:05:24 +00:00
[[package]]
name = "log"
2022-05-19 11:07:25 +00:00
version = "0.4.17"
2021-10-11 20:05:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-10-11 20:05:24 +00:00
dependencies = [
"cfg-if",
2022-05-19 11:07:25 +00:00
"value-bag",
2021-10-11 20:05:24 +00:00
]
2020-10-18 09:22:13 +00:00
[[package]]
name = "memchr"
2022-05-19 11:07:25 +00:00
version = "2.5.0"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
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",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nix"
2022-04-23 01:09:14 +00:00
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-23 01:09:14 +00:00
checksum = "8f17df307904acd05aa8e32e97bb20f2a0df1728bbc2d771ae8f9a90463441e9"
dependencies = [
"bitflags",
"cfg-if",
"libc",
]
2020-10-18 09:22:13 +00:00
[[package]]
name = "nom"
2022-04-10 22:11:51 +00:00
version = "7.1.1"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2020-10-18 09:22:13 +00:00
dependencies = [
"memchr",
"minimal-lexical",
2020-10-18 09:22:13 +00:00
]
[[package]]
name = "num-traits"
2022-05-19 11:07:25 +00:00
version = "0.2.15"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-10-18 09:22:13 +00:00
dependencies = [
"autocfg",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "num_cpus"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
2021-10-11 20:05:24 +00:00
[[package]]
name = "once_cell"
2022-03-06 23:37:05 +00:00
version = "1.10.0"
2021-10-11 20:05:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 23:37:05 +00:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2021-10-11 20:05:24 +00:00
2020-10-18 09:22:13 +00:00
[[package]]
name = "ordered-float"
2022-05-19 11:07:25 +00:00
version = "3.0.0"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "96bcbab4bfea7a59c2c0fe47211a1ac4e3e96bea6eb446d704f310bc5c732ae2"
2020-10-18 09:22:13 +00:00
dependencies = [
"num-traits",
]
[[package]]
name = "os_str_bytes"
2022-05-19 11:07:25 +00:00
version = "6.0.1"
2020-10-18 09:22:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "029d8d0b2f198229de29dca79676f2738ff952edf3fde542eb8bf94d8c21b435"
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "polling"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
dependencies = [
"cfg-if",
"libc",
"log",
"wepoll-ffi",
"winapi",
]
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 = [
"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
]
[[package]]
name = "proc-macro-error"
2020-10-01 07:59:20 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 09:22:13 +00:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
2020-10-18 09:22:13 +00:00
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-10-01 07:59:20 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 09:22:13 +00:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
2020-10-18 09:22:13 +00:00
"proc-macro2",
"quote",
"version_check",
]
2020-03-09 19:49:45 +00:00
[[package]]
name = "proc-macro2"
2022-05-19 11:07:25 +00:00
version = "1.0.39"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
2020-03-09 19:49:45 +00:00
dependencies = [
2022-05-19 11:07:25 +00:00
"unicode-ident",
2020-03-09 19:49:45 +00:00
]
[[package]]
name = "quote"
2022-04-22 07:41:11 +00:00
version = "1.0.18"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-22 07:41:11 +00:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
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
]
[[package]]
name = "redox_syscall"
2022-04-10 22:11:51 +00:00
version = "0.2.13"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2021-03-29 15:44:30 +00:00
dependencies = [
"bitflags",
]
2020-03-09 19:49:45 +00:00
[[package]]
name = "redox_users"
2022-04-10 22:11:51 +00:00
version = "0.4.3"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-10 22:11:51 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
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",
2022-04-10 22:11:51 +00:00
"thiserror",
2020-03-09 19:49:45 +00:00
]
2021-10-11 20:05:24 +00:00
[[package]]
name = "regex"
version = "1.5.5"
2021-10-11 20:05:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
2021-10-11 20:05:24 +00:00
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
]
[[package]]
name = "rstest"
2022-05-19 11:07:25 +00:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b939295f93cb1d12bc1a83cf9ee963199b133fb8a79832dd51b68bb9f59a04dc"
dependencies = [
"async-std",
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "f78aba848123782ba59340928ec7d876ebe745aa0365d6af8a630f19a5c16116"
dependencies = [
"cfg-if",
"proc-macro2",
"quote",
"rustc_version",
"syn",
]
2022-03-06 23:37:05 +00:00
[[package]]
name = "rstest_reuse"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b29d3117bce27ea307d1fb7ce12c64ba11b3fd04311a42d32bc5f0072e6e3d4d"
dependencies = [
"quote",
"rustc_version",
"syn",
]
[[package]]
name = "rustc_version"
2021-08-05 13:52:13 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-05 13:52:13 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
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]]
name = "semver"
2022-05-19 11:07:25 +00:00
version = "1.0.9"
2020-11-10 19:11:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
2020-11-10 19:11:26 +00:00
2020-03-09 19:49:45 +00:00
[[package]]
name = "serde"
2022-05-19 11:07:25 +00:00
version = "1.0.137"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
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-05-19 11:07:25 +00:00
version = "1.0.137"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
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
2022-05-19 11:07:25 +00:00
[[package]]
name = "slab"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
[[package]]
name = "socket2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
"winapi",
]
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
[[package]]
2020-10-18 09:22:13 +00:00
name = "syn"
2022-05-19 11:07:25 +00:00
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
dependencies = [
2020-10-18 09:22:13 +00:00
"proc-macro2",
"quote",
2022-05-19 11:07:25 +00:00
"unicode-ident",
]
[[package]]
2020-10-18 09:22:13 +00:00
name = "tempfile"
2022-01-20 21:44:28 +00:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-20 21:44:28 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
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-09 19:49:45 +00:00
[[package]]
2020-10-18 09:22:13 +00:00
name = "termcolor"
2022-03-06 23:37:05 +00:00
version = "1.1.3"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 23:37:05 +00:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
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"
2022-03-06 23:37:05 +00:00
version = "0.15.0"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-06 23:37:05 +00:00
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2020-03-09 19:49:45 +00:00
2022-04-10 22:11:51 +00:00
[[package]]
name = "thiserror"
2022-05-19 11:07:25 +00:00
version = "1.0.31"
2022-04-10 22:11:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2022-04-10 22:11:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-05-19 11:07:25 +00:00
version = "1.0.31"
2022-04-10 22:11:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2022-04-10 22:11:51 +00:00
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]]
2022-05-19 11:07:25 +00:00
name = "unicode-ident"
version = "1.0.0"
2020-03-09 19:49:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-19 11:07:25 +00:00
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
[[package]]
name = "value-bag"
version = "1.0.0-alpha.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
dependencies = [
"ctor",
"version_check",
]
[[package]]
name = "version_check"
2022-01-03 00:22:55 +00:00
version = "0.9.4"
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",
]
2022-05-19 11:07:25 +00:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
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"
2022-05-19 11:07:25 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
[[package]]
name = "web-sys"
version = "0.3.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2022-04-26 14:39:17 +00:00
[[package]]
name = "which"
version = "4.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
dependencies = [
"either",
"lazy_static",
"libc",
]
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"
2022-04-23 01:09:14 +00:00
version = "0.8.1"
2020-03-09 19:49:45 +00:00
dependencies = [
2020-10-18 09:22:13 +00:00
"anyhow",
"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",
"fastrand",
2020-10-18 09:22:13 +00:00
"glob",
"nix",
2020-10-18 09:22:13 +00:00
"ordered-float",
"rstest",
2022-03-06 23:37:05 +00:00
"rstest_reuse",
2020-10-18 09:22:13 +00:00
"serde",
"tempfile",
2022-04-26 14:39:17 +00:00
"which",
2020-10-18 09:22:13 +00:00
]