1
0
mirror of https://github.com/nukesor/pueue synced 2024-07-03 08:08:36 +00:00
pueue/Cargo.lock

2226 lines
56 KiB
Plaintext
Raw Normal View History

2020-01-20 08:43:29 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-05-22 14:24:04 +00:00
[[package]]
name = "addr2line"
2023-08-24 17:10:31 +00:00
version = "0.21.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2021-05-22 14:24:04 +00:00
dependencies = [
"gimli",
]
2020-05-31 16:11:01 +00:00
[[package]]
2020-12-02 21:52:49 +00:00
name = "adler"
2021-03-12 12:15:59 +00:00
version = "1.0.2"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-12 12:15:59 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-05-31 16:11:01 +00:00
[[package]]
name = "aho-corasick"
2024-03-23 18:32:15 +00:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
2023-06-12 16:47:40 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-08-21 11:45:45 +00:00
[[package]]
name = "android_system_properties"
2022-11-21 13:42:06 +00:00
version = "0.1.5"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-21 11:45:45 +00:00
dependencies = [
"libc",
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "anstream"
2024-03-23 18:32:15 +00:00
version = "0.6.13"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
2023-03-23 23:12:59 +00:00
[[package]]
name = "anstyle"
2024-03-23 18:32:15 +00:00
version = "1.0.6"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
2023-05-26 15:08:55 +00:00
[[package]]
name = "anstyle-parse"
2023-12-26 01:33:28 +00:00
version = "0.2.3"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
2023-05-26 15:08:55 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2023-12-26 01:33:28 +00:00
version = "1.0.2"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
2023-05-26 15:08:55 +00:00
dependencies = [
2023-12-26 01:33:28 +00:00
"windows-sys 0.52.0",
2023-05-26 15:08:55 +00:00
]
[[package]]
name = "anstyle-wincon"
2023-12-26 01:33:28 +00:00
version = "3.0.2"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstyle",
2023-12-26 01:33:28 +00:00
"windows-sys 0.52.0",
2023-05-26 15:08:55 +00:00
]
2023-03-23 23:12:59 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "anyhow"
2024-03-23 18:32:15 +00:00
version = "1.0.81"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
2021-06-15 19:50:01 +00:00
[[package]]
name = "assert_cmd"
2024-03-23 18:32:15 +00:00
version = "2.0.14"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8"
2021-06-15 19:50:01 +00:00
dependencies = [
2023-03-23 23:12:59 +00:00
"anstyle",
2024-03-23 18:32:15 +00:00
"bstr 1.9.1",
2021-06-15 19:50:01 +00:00
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2020-10-15 18:26:32 +00:00
[[package]]
name = "async-trait"
2024-03-23 18:32:15 +00:00
version = "0.1.78"
2020-10-15 18:26:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85"
2020-10-15 18:26:32 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2020-10-15 18:26:32 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "autocfg"
2022-02-18 16:48:49 +00:00
version = "1.1.0"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-27 23:02:07 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "backtrace"
2024-03-23 18:32:15 +00:00
version = "0.3.71"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
2021-05-22 14:24:04 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
2021-05-22 14:24:04 +00:00
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-01-25 13:27:05 +00:00
[[package]]
name = "base64"
2024-01-24 09:47:39 +00:00
version = "0.21.7"
2023-01-25 13:27:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-01-25 13:27:05 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "better-panic"
2022-01-17 02:01:39 +00:00
version = "0.3.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "6fa9e1d11a268684cbd90ed36370d7577afb6c62d912ddff5c15fc34343e5036"
2021-05-22 14:24:04 +00:00
dependencies = [
"backtrace",
"console",
]
[[package]]
name = "bindgen"
2024-03-23 18:32:15 +00:00
version = "0.69.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
"cexpr",
"clang-sys",
2024-03-23 18:32:15 +00:00
"itertools",
"lazy_static",
"lazycell",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
2023-10-21 10:51:52 +00:00
"syn",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "bitflags"
2021-10-22 05:21:32 +00:00
version = "1.3.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-01-20 08:43:29 +00:00
2023-07-04 08:14:26 +00:00
[[package]]
name = "bitflags"
2024-03-23 18:32:15 +00:00
version = "2.5.0"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
2023-07-04 08:14:26 +00:00
[[package]]
name = "block-buffer"
2023-03-23 23:12:59 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "bstr"
2021-10-22 05:21:32 +00:00
version = "0.2.17"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
2021-06-15 19:50:01 +00:00
dependencies = [
"lazy_static",
"memchr",
2023-08-22 07:11:09 +00:00
"regex-automata 0.1.10",
2021-06-15 19:50:01 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "bstr"
2024-03-23 18:32:15 +00:00
version = "1.9.1"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706"
2022-11-21 13:42:06 +00:00
dependencies = [
"memchr",
2024-03-23 18:32:15 +00:00
"regex-automata 0.4.6",
2022-11-21 13:42:06 +00:00
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
2020-05-24 17:00:36 +00:00
name = "bumpalo"
2024-03-23 18:32:15 +00:00
version = "3.15.4"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
2020-01-20 08:43:29 +00:00
[[package]]
name = "byteorder"
2023-10-14 18:00:46 +00:00
version = "1.5.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2020-01-20 08:43:29 +00:00
2021-05-23 13:47:34 +00:00
[[package]]
name = "bytes"
2024-03-23 18:32:15 +00:00
version = "1.6.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2021-05-23 13:47:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "cc"
2024-03-23 18:32:15 +00:00
version = "1.0.90"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
2020-01-20 08:43:29 +00:00
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
"nom",
]
2020-10-27 14:48:57 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-03-23 18:32:15 +00:00
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
2020-01-20 08:43:29 +00:00
[[package]]
name = "chrono"
2024-03-23 18:32:15 +00:00
version = "0.4.35"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-06-12 16:47:40 +00:00
"android-tzdata",
2022-08-21 11:45:45 +00:00
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
2022-08-21 11:45:45 +00:00
"wasm-bindgen",
2024-03-23 18:32:15 +00:00
"windows-targets 0.52.4",
2020-01-20 08:43:29 +00:00
]
2020-03-01 07:38:15 +00:00
[[package]]
name = "chrono-english"
2021-12-11 22:10:23 +00:00
version = "0.1.7"
2020-03-01 07:38:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "f73d909da7eb4a7d88c679c3f5a1bc09d965754e0adb2e7627426cef96a00d6f"
2020-03-01 07:38:15 +00:00
dependencies = [
"chrono",
"scanlex",
2020-03-01 07:38:15 +00:00
]
[[package]]
name = "clang-sys"
2024-01-24 09:47:39 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
dependencies = [
"glob",
"libc",
"libloading",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "clap"
2024-03-23 18:32:15 +00:00
version = "4.5.3"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "949626d00e063efc93b6dca932419ceb5432f99769911c0b995f7e884c778813"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"clap_builder",
2020-10-30 17:33:50 +00:00
"clap_derive",
2023-05-26 15:08:55 +00:00
]
[[package]]
name = "clap_builder"
2024-03-23 18:32:15 +00:00
version = "4.5.2"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstream",
"anstyle",
2022-05-09 18:02:45 +00:00
"clap_lex",
"strsim",
2022-01-02 16:59:21 +00:00
]
[[package]]
name = "clap_complete"
2024-03-23 18:32:15 +00:00
version = "4.5.1"
2022-01-02 16:59:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "885e4d7d5af40bfb99ae6f9433e292feac98d452dcb3ec3d25dfe7552b77da8c"
2022-01-02 16:59:21 +00:00
dependencies = [
"clap",
2020-01-20 08:43:29 +00:00
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "clap_derive"
2024-03-23 18:32:15 +00:00
version = "4.5.3"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "90239a040c80f5e14809ca132ddc4176ab33d5e17e49691793296e3fcb34d72f"
2020-10-30 17:33:50 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"heck 0.5.0",
2020-10-30 17:33:50 +00:00
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2020-10-30 17:33:50 +00:00
]
2022-05-09 18:02:45 +00:00
[[package]]
name = "clap_lex"
2024-03-23 18:32:15 +00:00
version = "0.7.0"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
2022-05-09 18:02:45 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
2023-05-26 15:08:55 +00:00
name = "colorchoice"
version = "1.0.0"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-11-21 13:42:06 +00:00
[[package]]
name = "comfy-table"
2023-10-21 10:51:52 +00:00
version = "7.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 10:51:52 +00:00
checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
dependencies = [
2023-10-21 10:51:52 +00:00
"crossterm",
"strum",
"strum_macros",
2021-08-10 10:40:48 +00:00
"unicode-width",
]
[[package]]
name = "command-group"
2023-03-03 23:35:25 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "5080df6b0f0ecb76cab30808f00d937ba725cebe266a3da8cd89dff92f2a9916"
dependencies = [
2023-10-14 18:00:46 +00:00
"nix 0.26.4",
"winapi",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "console"
2024-01-24 09:47:39 +00:00
version = "0.15.8"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
2021-05-22 14:24:04 +00:00
dependencies = [
"encode_unicode",
2022-11-21 13:42:06 +00:00
"lazy_static",
2021-05-22 14:24:04 +00:00
"libc",
2024-01-24 09:47:39 +00:00
"windows-sys 0.52.0",
2021-05-22 14:24:04 +00:00
]
2022-08-21 11:45:45 +00:00
[[package]]
name = "core-foundation-sys"
2023-12-26 01:33:28 +00:00
version = "0.8.6"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2022-08-21 11:45:45 +00:00
2022-07-29 21:17:02 +00:00
[[package]]
name = "cpufeatures"
2024-01-24 09:47:39 +00:00
version = "0.2.12"
2022-07-29 21:17:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2022-07-29 21:17:02 +00:00
dependencies = [
"libc",
]
2023-10-14 17:54:27 +00:00
[[package]]
name = "crossterm"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
2023-10-14 17:54:27 +00:00
"crossterm_winapi",
"libc",
"parking_lot",
"winapi",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "crossterm_winapi"
2023-07-04 08:14:26 +00:00
version = "0.9.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
2022-07-29 21:17:02 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2020-10-15 22:46:19 +00:00
[[package]]
name = "ctrlc"
2024-03-23 18:32:15 +00:00
version = "3.4.4"
2020-10-15 22:46:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345"
2020-10-15 22:46:19 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"nix 0.28.0",
2023-12-26 01:33:28 +00:00
"windows-sys 0.52.0",
2022-11-21 13:42:06 +00:00
]
2023-08-22 07:11:09 +00:00
[[package]]
name = "deranged"
2024-01-24 09:47:39 +00:00
version = "0.3.11"
2023-08-22 07:11:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2023-10-14 18:00:46 +00:00
dependencies = [
"powerfmt",
]
2023-08-22 07:11:09 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "diff"
2022-07-18 20:17:37 +00:00
version = "0.1.13"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2021-05-22 14:24:04 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
2021-07-08 14:58:18 +00:00
name = "difflib"
version = "0.4.0"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 14:58:18 +00:00
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2021-06-15 19:50:01 +00:00
[[package]]
name = "digest"
2023-05-26 15:08:55 +00:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
2022-07-29 21:17:02 +00:00
"block-buffer",
"crypto-common",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "dirs"
2023-05-26 15:08:55 +00:00
version = "5.0.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"dirs-sys",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "dirs-sys"
2023-05-26 15:08:55 +00:00
version = "0.4.1"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
2023-03-23 23:12:59 +00:00
dependencies = [
"libc",
2023-05-26 15:08:55 +00:00
"option-ext",
2023-03-23 23:12:59 +00:00
"redox_users",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
2023-03-23 23:12:59 +00:00
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2024-03-23 18:32:15 +00:00
[[package]]
name = "either"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
2021-05-22 14:24:04 +00:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2024-03-23 18:32:15 +00:00
[[package]]
name = "env_filter"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
dependencies = [
"log",
]
[[package]]
name = "env_logger"
2024-01-24 09:47:39 +00:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
dependencies = [
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
]
2024-03-23 18:32:15 +00:00
[[package]]
name = "env_logger"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
dependencies = [
"env_filter",
"log",
]
2023-07-04 08:14:26 +00:00
[[package]]
name = "equivalent"
2023-08-22 07:11:09 +00:00
version = "1.0.1"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-07-04 08:14:26 +00:00
2022-07-29 21:27:21 +00:00
[[package]]
name = "errno"
2023-12-26 01:33:28 +00:00
version = "0.3.8"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2023-05-26 15:08:55 +00:00
dependencies = [
"libc",
2023-12-26 01:33:28 +00:00
"windows-sys 0.52.0",
2023-05-26 15:08:55 +00:00
]
2022-01-17 02:01:39 +00:00
[[package]]
name = "fastrand"
2023-10-14 18:00:46 +00:00
version = "2.0.1"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2022-01-17 02:01:39 +00:00
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-executor"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-macro"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2022-06-22 17:56:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2022-06-22 17:56:46 +00:00
]
[[package]]
name = "futures-sink"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-task"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-timer"
2024-03-23 18:32:15 +00:00
version = "3.0.3"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-util"
2023-12-26 01:33:28 +00:00
version = "0.3.30"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-05-26 15:08:55 +00:00
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
2022-07-29 21:17:02 +00:00
"version_check",
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "getrandom"
2024-01-24 09:47:39 +00:00
version = "0.2.12"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
2020-12-22 20:30:04 +00:00
dependencies = [
"cfg-if",
2020-12-22 20:30:04 +00:00
"libc",
2023-10-14 18:00:46 +00:00
"wasi",
2020-12-22 20:30:04 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "gimli"
2023-12-26 01:33:28 +00:00
version = "0.28.1"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2021-05-22 14:24:04 +00:00
[[package]]
name = "glob"
2023-01-25 13:27:05 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-25 13:27:05 +00:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2021-05-11 18:53:26 +00:00
[[package]]
name = "half"
2024-03-23 18:32:15 +00:00
version = "1.8.3"
2021-05-11 18:53:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403"
2021-05-11 18:53:26 +00:00
[[package]]
name = "handlebars"
2023-12-26 01:33:28 +00:00
version = "4.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225"
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
2022-05-30 23:42:40 +00:00
"thiserror",
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "hashbrown"
2023-12-26 01:33:28 +00:00
version = "0.14.3"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
2020-10-30 17:33:50 +00:00
2022-01-17 02:01:39 +00:00
[[package]]
name = "heck"
2023-03-03 23:35:25 +00:00
version = "0.4.1"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-01-17 02:01:39 +00:00
2024-03-23 18:32:15 +00:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2023-03-03 23:35:25 +00:00
[[package]]
name = "hermit-abi"
2024-03-23 18:32:15 +00:00
version = "0.3.9"
2023-03-03 23:35:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-03-03 23:35:25 +00:00
2020-05-31 16:11:01 +00:00
[[package]]
name = "hex"
2021-03-12 12:15:59 +00:00
version = "0.4.3"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-12 12:15:59 +00:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-05-31 16:11:01 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2022-08-21 11:45:45 +00:00
[[package]]
name = "iana-time-zone"
2024-03-23 18:32:15 +00:00
version = "0.1.60"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
2022-08-21 11:45:45 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-11-21 13:42:06 +00:00
"iana-time-zone-haiku",
2022-08-21 11:45:45 +00:00
"js-sys",
"wasm-bindgen",
2023-10-21 10:51:52 +00:00
"windows-core",
2022-08-21 11:45:45 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "iana-time-zone-haiku"
2023-05-26 15:08:55 +00:00
version = "0.1.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-11-21 13:42:06 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"cc",
2022-11-21 13:42:06 +00:00
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "indexmap"
2024-03-23 18:32:15 +00:00
version = "2.2.6"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
2020-10-30 17:33:50 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"equivalent",
2020-10-30 17:33:50 +00:00
"hashbrown",
]
[[package]]
name = "is-terminal"
2024-03-23 18:32:15 +00:00
version = "0.4.12"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
dependencies = [
2023-07-04 08:14:26 +00:00
"hermit-abi",
2024-03-23 18:32:15 +00:00
"libc",
2024-01-24 09:47:39 +00:00
"windows-sys 0.52.0",
2021-07-08 14:58:18 +00:00
]
2024-03-23 18:32:15 +00:00
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "itoa"
2023-12-26 01:33:28 +00:00
version = "1.0.10"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2020-01-20 08:43:29 +00:00
2020-05-24 17:00:36 +00:00
[[package]]
name = "js-sys"
2024-03-23 18:32:15 +00:00
version = "0.3.69"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
2020-05-24 17:00:36 +00:00
dependencies = [
"wasm-bindgen",
2020-05-24 17:00:36 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-01-20 08:43:29 +00:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-01-20 08:43:29 +00:00
[[package]]
name = "libc"
2024-03-23 18:32:15 +00:00
version = "0.2.153"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
[[package]]
name = "libloading"
2024-03-23 18:32:15 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
dependencies = [
"cfg-if",
2024-03-23 18:32:15 +00:00
"windows-targets 0.52.4",
]
[[package]]
name = "libproc"
2024-03-23 18:32:15 +00:00
version = "0.14.6"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "8eb6497078a4c9c2aca63df56d8dce6eb4381d53a960f781a3a748f7ea97436d"
dependencies = [
"bindgen",
2023-08-22 07:11:09 +00:00
"errno",
"libc",
]
2020-01-20 08:43:29 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
2023-12-26 01:33:28 +00:00
name = "libredox"
version = "0.0.1"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
2023-12-26 01:33:28 +00:00
"libc",
"redox_syscall",
]
2022-11-21 13:42:06 +00:00
2022-07-29 21:27:21 +00:00
[[package]]
name = "linux-raw-sys"
2024-01-24 09:47:39 +00:00
version = "0.4.13"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
2023-07-04 08:14:26 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "lock_api"
2023-10-21 10:51:52 +00:00
version = "0.4.11"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 10:51:52 +00:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2020-01-20 08:43:29 +00:00
dependencies = [
2022-05-09 18:02:45 +00:00
"autocfg",
"scopeguard",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "log"
2024-03-23 18:32:15 +00:00
version = "0.4.21"
2020-07-05 17:24:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2020-07-05 17:24:59 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "memchr"
2024-01-24 09:47:39 +00:00
version = "2.7.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2020-01-20 08:43:29 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2020-12-02 21:52:49 +00:00
[[package]]
name = "miniz_oxide"
2024-03-23 18:32:15 +00:00
version = "0.7.2"
2020-12-02 21:52:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2020-12-02 21:52:49 +00:00
dependencies = [
"adler",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "mio"
2024-03-23 18:32:15 +00:00
version = "0.8.11"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
2023-10-14 18:00:46 +00:00
"wasi",
2023-06-12 16:47:40 +00:00
"windows-sys 0.48.0",
2020-01-20 08:43:29 +00:00
]
2021-06-04 18:02:55 +00:00
[[package]]
name = "nix"
2023-10-14 18:00:46 +00:00
version = "0.26.4"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
2022-08-21 11:45:45 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
2022-08-21 11:45:45 +00:00
"cfg-if",
"libc",
2023-10-14 18:00:46 +00:00
]
[[package]]
name = "nix"
2024-03-23 18:32:15 +00:00
version = "0.28.0"
2023-10-14 18:00:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
2023-10-14 18:00:46 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
2023-10-14 18:00:46 +00:00
"cfg-if",
2024-03-23 18:32:15 +00:00
"cfg_aliases",
2023-10-14 18:00:46 +00:00
"libc",
2022-08-21 11:45:45 +00:00
]
[[package]]
name = "nom"
2023-01-25 13:27:05 +00:00
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-25 13:27:05 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2024-03-23 18:32:15 +00:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2020-01-20 08:43:29 +00:00
[[package]]
name = "num-traits"
2024-03-23 18:32:15 +00:00
version = "0.2.18"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num_cpus"
2023-07-04 08:14:26 +00:00
version = "1.16.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"hermit-abi",
"libc",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "num_threads"
2024-03-23 18:32:15 +00:00
version = "0.1.7"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "object"
2023-12-26 01:33:28 +00:00
version = "0.32.2"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2021-06-04 18:02:55 +00:00
dependencies = [
"memchr",
]
2021-05-22 14:24:04 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "once_cell"
2023-12-26 01:33:28 +00:00
version = "1.19.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2020-01-20 08:43:29 +00:00
2020-10-30 17:33:50 +00:00
[[package]]
2023-05-26 15:08:55 +00:00
name = "option-ext"
version = "0.2.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2020-10-30 17:33:50 +00:00
[[package]]
name = "parking_lot"
2022-06-22 17:56:46 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-10-21 10:51:52 +00:00
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 10:51:52 +00:00
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
dependencies = [
"cfg-if",
"libc",
2023-12-26 01:33:28 +00:00
"redox_syscall",
"smallvec",
2023-08-22 07:11:09 +00:00
"windows-targets 0.48.5",
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "pem"
2023-12-26 01:33:28 +00:00
version = "3.0.3"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
2020-12-19 19:36:51 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"base64",
"serde",
2020-12-19 19:36:51 +00:00
]
[[package]]
name = "pest"
2024-03-23 18:32:15 +00:00
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8"
dependencies = [
2023-10-14 18:00:46 +00:00
"memchr",
2022-07-29 21:17:02 +00:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2024-03-23 18:32:15 +00:00
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2024-03-23 18:32:15 +00:00
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
]
[[package]]
name = "pest_meta"
2024-03-23 18:32:15 +00:00
version = "2.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293"
dependencies = [
2022-07-29 21:17:02 +00:00
"once_cell",
"pest",
2023-01-25 13:27:05 +00:00
"sha2",
2020-05-13 20:20:27 +00:00
]
2020-12-12 22:11:27 +00:00
[[package]]
name = "pin-project-lite"
2023-10-14 18:00:46 +00:00
version = "0.2.13"
2020-12-12 22:11:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2020-12-12 22:11:27 +00:00
2022-06-22 17:56:46 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "portpicker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
dependencies = [
"rand",
]
2023-10-14 18:00:46 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2020-01-20 08:43:29 +00:00
[[package]]
name = "ppv-lite86"
2022-11-21 13:42:06 +00:00
version = "0.2.17"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2020-01-20 08:43:29 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates"
2024-01-24 09:47:39 +00:00
version = "3.1.0"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8"
2021-06-15 19:50:01 +00:00
dependencies = [
2023-03-23 23:12:59 +00:00
"anstyle",
2021-07-08 14:58:18 +00:00
"difflib",
2021-06-15 19:50:01 +00:00
"predicates-core",
]
[[package]]
name = "predicates-core"
2023-03-23 23:12:59 +00:00
version = "1.0.6"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates-tree"
2023-03-23 23:12:59 +00:00
version = "1.0.9"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
2021-06-15 19:50:01 +00:00
dependencies = [
"predicates-core",
2021-10-22 05:21:32 +00:00
"termtree",
2021-06-15 19:50:01 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "pretty_assertions"
2023-08-22 07:11:09 +00:00
version = "1.4.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
2021-05-22 14:24:04 +00:00
dependencies = [
"diff",
2022-11-21 13:42:06 +00:00
"yansi",
2021-05-22 14:24:04 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "proc-macro2"
2024-03-23 18:32:15 +00:00
version = "1.0.79"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
2020-01-20 08:43:29 +00:00
dependencies = [
2022-05-30 23:42:40 +00:00
"unicode-ident",
2020-01-20 08:43:29 +00:00
]
2020-05-31 16:11:01 +00:00
[[package]]
name = "procfs"
2023-12-26 01:33:28 +00:00
version = "0.16.0"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4"
2020-05-31 16:11:01 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
"hex",
"lazy_static",
2023-12-26 01:33:28 +00:00
"procfs-core",
"rustix",
]
[[package]]
name = "procfs-core"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29"
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
2023-12-26 01:33:28 +00:00
"hex",
2020-05-31 16:11:01 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "pueue"
2024-03-22 00:56:55 +00:00
version = "3.4.0"
2020-01-20 08:43:29 +00:00
dependencies = [
"anyhow",
2021-06-15 19:50:01 +00:00
"assert_cmd",
2021-05-22 14:24:04 +00:00
"better-panic",
"chrono",
"chrono-english",
2020-10-30 17:33:50 +00:00
"clap",
2022-01-02 16:59:21 +00:00
"clap_complete",
"comfy-table",
"command-group",
2023-10-21 10:51:52 +00:00
"crossterm",
2020-10-15 22:46:19 +00:00
"ctrlc",
2024-03-23 18:32:15 +00:00
"env_logger 0.10.2",
"handlebars",
"log",
2022-06-26 12:07:29 +00:00
"pest",
"pest_derive",
2021-05-22 14:24:04 +00:00
"pretty_assertions",
"procfs",
"pueue-lib",
"rstest",
2021-05-14 20:53:39 +00:00
"serde",
"serde_derive",
2021-01-17 17:17:44 +00:00
"serde_json",
2022-08-16 09:45:49 +00:00
"serde_yaml",
2021-01-17 17:17:44 +00:00
"shell-escape",
"similar-asserts",
2021-01-17 17:17:44 +00:00
"simplelog",
"snap",
2023-10-21 10:51:52 +00:00
"strum",
"strum_macros",
2021-01-17 17:17:44 +00:00
"tempfile",
"test-log",
2021-05-23 13:47:34 +00:00
"tokio",
2021-01-29 15:11:42 +00:00
"whoami",
2021-01-17 17:17:44 +00:00
]
[[package]]
name = "pueue-lib"
2024-03-22 00:55:53 +00:00
version = "0.26.0"
dependencies = [
"anyhow",
"async-trait",
"better-panic",
"byteorder",
"chrono",
"command-group",
2023-05-26 15:08:55 +00:00
"dirs",
2023-08-18 18:09:21 +00:00
"handlebars",
"libproc",
"log",
"portpicker",
"pretty_assertions",
"procfs",
"rand",
"rcgen",
"rev_buf_reader",
"rustls",
"rustls-pemfile",
"serde",
2021-05-11 18:53:26 +00:00
"serde_cbor",
"serde_derive",
"serde_json",
"serde_yaml",
"shellexpand",
"snap",
2023-10-21 10:51:52 +00:00
"strum",
"strum_macros",
"tempfile",
"thiserror",
"tokio",
"tokio-rustls",
2021-02-01 18:58:24 +00:00
"whoami",
"winapi",
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "quote"
2024-01-24 09:47:39 +00:00
version = "1.0.35"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2020-01-27 23:02:07 +00:00
dependencies = [
"proc-macro2",
2020-02-05 21:18:23 +00:00
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "rand"
2022-02-18 16:48:49 +00:00
version = "0.8.5"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2020-12-22 20:30:04 +00:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
2020-12-22 20:30:04 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-13 13:14:21 +00:00
version = "0.3.1"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-13 13:14:21 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2020-12-22 20:30:04 +00:00
dependencies = [
"ppv-lite86",
"rand_core",
2020-12-22 20:30:04 +00:00
]
[[package]]
name = "rand_core"
2022-11-21 13:42:06 +00:00
version = "0.6.4"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2020-12-22 20:30:04 +00:00
dependencies = [
2021-05-11 18:53:26 +00:00
"getrandom",
2020-01-20 08:43:29 +00:00
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "rcgen"
2024-03-23 18:32:15 +00:00
version = "0.12.1"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
2020-12-19 19:36:51 +00:00
dependencies = [
"pem",
"ring",
2023-10-14 18:00:46 +00:00
"time",
2020-12-19 19:36:51 +00:00
"yasna",
]
2023-10-21 10:51:52 +00:00
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "redox_users"
2023-12-26 01:33:28 +00:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
dependencies = [
2021-05-11 18:53:26 +00:00
"getrandom",
2023-12-26 01:33:28 +00:00
"libredox",
2022-03-24 22:03:41 +00:00
"thiserror",
]
[[package]]
name = "regex"
2024-03-23 18:32:15 +00:00
version = "1.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
dependencies = [
"aho-corasick",
"memchr",
2024-03-23 18:32:15 +00:00
"regex-automata 0.4.6",
"regex-syntax",
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2023-08-22 07:11:09 +00:00
[[package]]
name = "regex-automata"
2024-03-23 18:32:15 +00:00
version = "0.4.6"
2023-08-22 07:11:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2023-08-22 07:11:09 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-10-14 18:00:46 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2023-08-22 07:11:09 +00:00
[[package]]
name = "relative-path"
2024-01-24 09:47:39 +00:00
version = "1.9.2"
2023-08-22 07:11:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
[[package]]
name = "rev_buf_reader"
2022-01-31 08:55:07 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "8c0f2e47e00e29920959826e2e1784728a3780d1a784247be5257258cc75f910"
dependencies = [
"memchr",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "ring"
2024-03-23 18:32:15 +00:00
version = "0.17.8"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2020-10-30 23:02:12 +00:00
dependencies = [
"cc",
2024-03-23 18:32:15 +00:00
"cfg-if",
"getrandom",
2020-10-30 23:02:12 +00:00
"libc",
"spin",
"untrusted",
2024-03-23 18:32:15 +00:00
"windows-sys 0.52.0",
2020-10-30 23:02:12 +00:00
]
[[package]]
name = "rstest"
2023-08-22 07:11:09 +00:00
version = "0.18.2"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
2023-08-22 07:11:09 +00:00
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
dependencies = [
"cfg-if",
2023-08-22 07:11:09 +00:00
"glob",
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"regex",
"relative-path",
"rustc_version",
2023-10-21 10:51:52 +00:00
"syn",
"unicode-ident",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-demangle"
2023-05-26 15:08:55 +00:00
version = "0.1.23"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc_version"
2021-08-09 13:38:37 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-09 13:38:37 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "rustix"
2024-03-23 18:32:15 +00:00
version = "0.38.32"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
2023-07-04 08:14:26 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"bitflags 2.5.0",
2023-08-22 07:11:09 +00:00
"errno",
2023-07-04 08:14:26 +00:00
"libc",
2023-12-26 01:33:28 +00:00
"linux-raw-sys",
"windows-sys 0.52.0",
2023-07-04 08:14:26 +00:00
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "rustls"
2024-01-24 09:47:39 +00:00
version = "0.22.2"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
2020-10-30 23:02:12 +00:00
dependencies = [
2023-12-25 16:15:57 +00:00
"log",
2020-10-30 23:02:12 +00:00
"ring",
2023-12-25 16:15:57 +00:00
"rustls-pki-types",
2023-05-26 15:08:55 +00:00
"rustls-webpki",
2023-12-25 16:15:57 +00:00
"subtle",
"zeroize",
2020-10-30 23:02:12 +00:00
]
[[package]]
name = "rustls-pemfile"
2024-03-23 18:32:15 +00:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
dependencies = [
2023-07-04 08:14:26 +00:00
"base64",
2023-12-25 16:15:57 +00:00
"rustls-pki-types",
2023-05-26 15:08:55 +00:00
]
2023-12-25 16:15:57 +00:00
[[package]]
name = "rustls-pki-types"
2024-03-23 18:32:15 +00:00
version = "1.4.0"
2023-12-25 16:15:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "868e20fada228fefaf6b652e00cc73623d54f8171e7352c18bb281571f2d92da"
2023-12-25 16:15:57 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "rustls-webpki"
2024-03-23 18:32:15 +00:00
version = "0.102.2"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
2023-05-26 15:08:55 +00:00
dependencies = [
"ring",
2023-12-25 16:15:57 +00:00
"rustls-pki-types",
2023-05-26 15:08:55 +00:00
"untrusted",
]
2022-01-02 18:04:34 +00:00
[[package]]
name = "rustversion"
2023-08-22 07:11:09 +00:00
version = "1.0.14"
2022-01-02 18:04:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2022-01-02 18:04:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "ryu"
2024-03-23 18:32:15 +00:00
version = "1.0.17"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2020-01-27 23:02:07 +00:00
2020-03-01 07:38:15 +00:00
[[package]]
name = "scanlex"
2020-12-02 21:52:49 +00:00
version = "0.1.4"
2020-03-01 07:38:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 21:52:49 +00:00
checksum = "088c5d71572124929ea7549a8ce98e1a6fd33d0a38367b09027b382e67c033db"
2020-03-01 07:38:15 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "scopeguard"
2023-08-22 07:11:09 +00:00
version = "1.2.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2020-05-24 17:00:36 +00:00
[[package]]
name = "semver"
2024-03-23 18:32:15 +00:00
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde"
2024-03-23 18:32:15 +00:00
version = "1.0.197"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
2023-08-24 17:10:31 +00:00
dependencies = [
"serde_derive",
]
2020-01-20 08:43:29 +00:00
2021-05-11 18:53:26 +00:00
[[package]]
name = "serde_cbor"
2021-08-18 23:46:38 +00:00
version = "0.11.2"
2021-05-11 18:53:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-18 23:46:38 +00:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
2021-05-11 18:53:26 +00:00
dependencies = [
"half",
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde_derive"
2024-03-23 18:32:15 +00:00
version = "1.0.197"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_json"
2024-03-23 18:32:15 +00:00
version = "1.0.114"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
2020-01-20 08:43:29 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_yaml"
2024-03-23 18:32:15 +00:00
version = "0.9.33"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "a0623d197252096520c6f2a5e1171ee436e5af99a5d7caa2891e55e61950e6d9"
2020-01-20 08:43:29 +00:00
dependencies = [
2021-10-22 05:21:32 +00:00
"indexmap",
2022-07-29 21:18:46 +00:00
"itoa",
2022-01-02 18:04:34 +00:00
"ryu",
"serde",
2022-07-29 21:18:46 +00:00
"unsafe-libyaml",
2020-01-20 08:43:29 +00:00
]
[[package]]
2023-01-25 13:27:05 +00:00
name = "sha2"
2023-10-14 18:00:46 +00:00
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
2022-07-29 21:17:02 +00:00
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "shell-escape"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
[[package]]
name = "shellexpand"
2023-05-26 15:08:55 +00:00
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
dependencies = [
2023-05-26 15:08:55 +00:00
"dirs",
]
[[package]]
name = "shlex"
2024-01-24 09:47:39 +00:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "similar"
2024-01-24 09:47:39 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21"
dependencies = [
2022-11-21 13:42:06 +00:00
"bstr 0.2.17",
"unicode-segmentation",
]
[[package]]
name = "similar-asserts"
2023-08-22 07:11:09 +00:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "e041bb827d1bfca18f213411d51b665309f1afb37a04a5d1464530e13779fc0f"
dependencies = [
"console",
"similar",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "simplelog"
2024-03-23 18:32:15 +00:00
version = "0.12.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
2020-01-20 08:43:29 +00:00
dependencies = [
"log",
2022-11-14 12:56:25 +00:00
"termcolor",
2023-10-14 18:00:46 +00:00
"time",
2020-01-27 23:02:07 +00:00
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "slab"
2023-08-24 17:10:31 +00:00
version = "0.4.9"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-07-29 21:17:02 +00:00
dependencies = [
"autocfg",
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "smallvec"
2024-03-23 18:32:15 +00:00
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2020-05-24 17:00:36 +00:00
2020-04-30 19:09:24 +00:00
[[package]]
name = "snap"
2023-12-26 01:33:28 +00:00
version = "1.1.1"
2020-04-30 19:09:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2020-04-30 19:09:24 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "socket2"
2024-03-23 18:32:15 +00:00
version = "0.5.6"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
2024-03-23 18:32:15 +00:00
"windows-sys 0.52.0",
2022-02-18 16:48:49 +00:00
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "spin"
version = "0.9.8"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2020-10-30 23:02:12 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "strsim"
2024-03-23 18:32:15 +00:00
version = "0.11.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
2020-01-20 08:43:29 +00:00
2023-07-04 08:14:26 +00:00
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
2022-05-09 18:02:45 +00:00
[[package]]
name = "strum_macros"
2023-10-21 10:51:52 +00:00
version = "0.25.3"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-21 10:51:52 +00:00
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
2023-07-04 08:14:26 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"heck 0.4.1",
2023-07-04 08:14:26 +00:00
"proc-macro2",
"quote",
"rustversion",
2023-10-21 10:51:52 +00:00
"syn",
2020-01-27 23:02:07 +00:00
]
2023-12-25 16:15:57 +00:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-03-23 23:12:59 +00:00
[[package]]
name = "syn"
2024-03-23 18:32:15 +00:00
version = "2.0.53"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
2023-03-23 23:12:59 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "tempfile"
2024-03-23 18:32:15 +00:00
version = "3.10.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
2020-01-20 08:43:29 +00:00
dependencies = [
"cfg-if",
2022-01-17 02:01:39 +00:00
"fastrand",
2023-12-26 01:33:28 +00:00
"rustix",
2024-01-24 09:47:39 +00:00
"windows-sys 0.52.0",
2020-01-20 08:43:29 +00:00
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "termcolor"
2024-03-23 18:32:15 +00:00
version = "1.4.1"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2020-10-30 17:33:50 +00:00
dependencies = [
"winapi-util",
]
2021-10-22 05:21:32 +00:00
[[package]]
name = "termtree"
2023-03-23 23:12:59 +00:00
version = "0.4.1"
2021-10-22 05:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
2021-10-22 05:21:32 +00:00
[[package]]
name = "test-log"
2024-03-23 18:32:15 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7b319995299c65d522680decf80f2c108d85b861d81dfe340a10d16cee29d9e6"
2023-12-26 01:33:28 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"env_logger 0.11.3",
2023-12-26 01:33:28 +00:00
"test-log-macros",
]
[[package]]
name = "test-log-macros"
2024-03-23 18:32:15 +00:00
version = "0.2.15"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c8f546451eaa38373f549093fe9fd05e7d2bade739e2ddf834b9968621d60107"
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
]
2020-09-27 10:41:51 +00:00
[[package]]
name = "thiserror"
2024-03-23 18:32:15 +00:00
version = "1.0.58"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
2020-09-27 10:41:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-03-23 18:32:15 +00:00
version = "1.0.58"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
2020-09-27 10:41:51 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2020-09-27 10:41:51 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "time"
2024-03-23 18:32:15 +00:00
version = "0.3.34"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
2022-02-18 16:48:49 +00:00
dependencies = [
2023-08-22 07:11:09 +00:00
"deranged",
2022-05-09 18:02:45 +00:00
"itoa",
2022-02-18 16:48:49 +00:00
"libc",
2024-03-23 18:32:15 +00:00
"num-conv",
2022-02-18 16:48:49 +00:00
"num_threads",
2023-10-14 18:00:46 +00:00
"powerfmt",
2022-11-21 13:42:06 +00:00
"serde",
"time-core",
2022-05-09 18:02:45 +00:00
"time-macros",
2022-02-18 16:48:49 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "time-core"
2023-10-14 18:00:46 +00:00
version = "0.1.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-11-21 13:42:06 +00:00
2022-05-09 18:02:45 +00:00
[[package]]
name = "time-macros"
2024-03-23 18:32:15 +00:00
version = "0.2.17"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
2022-11-21 13:42:06 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"num-conv",
2022-11-21 13:42:06 +00:00
"time-core",
]
2022-05-09 18:02:45 +00:00
2021-05-23 13:47:34 +00:00
[[package]]
name = "tokio"
2024-03-23 18:32:15 +00:00
version = "1.36.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
2021-05-23 13:47:34 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"backtrace",
2021-05-23 13:47:34 +00:00
"bytes",
"libc",
2022-05-09 18:02:45 +00:00
"mio",
2021-05-23 13:47:34 +00:00
"num_cpus",
"pin-project-lite",
2022-02-18 16:48:49 +00:00
"socket2",
2021-05-23 13:47:34 +00:00
"tokio-macros",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-macros"
2023-12-26 01:33:28 +00:00
version = "2.2.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-26 01:33:28 +00:00
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2021-05-23 13:47:34 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-rustls"
2023-12-25 16:15:57 +00:00
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-25 16:15:57 +00:00
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
dependencies = [
"rustls",
2023-12-25 16:15:57 +00:00
"rustls-pki-types",
"tokio",
]
[[package]]
name = "typenum"
2023-10-14 18:00:46 +00:00
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "ucd-trie"
2023-08-22 07:11:09 +00:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
2020-01-20 08:43:29 +00:00
[[package]]
2022-05-30 23:42:40 +00:00
name = "unicode-ident"
2023-10-14 18:00:46 +00:00
version = "1.0.12"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-segmentation"
2024-03-23 18:32:15 +00:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-width"
2023-10-14 18:00:46 +00:00
version = "0.1.11"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2020-01-20 08:43:29 +00:00
2022-07-29 21:18:46 +00:00
[[package]]
name = "unsafe-libyaml"
2024-03-23 18:32:15 +00:00
version = "0.2.11"
2022-07-29 21:18:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2022-07-29 21:18:46 +00:00
2020-10-30 23:02:12 +00:00
[[package]]
name = "untrusted"
version = "0.9.0"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2020-10-30 23:02:12 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2020-02-02 11:59:44 +00:00
[[package]]
name = "version_check"
2022-01-02 18:04:34 +00:00
version = "0.9.4"
2020-02-02 11:59:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-02-02 11:59:44 +00:00
2021-06-15 19:50:01 +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-03-12 10:48:07 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2024-03-23 18:32:15 +00:00
[[package]]
name = "wasite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2020-05-24 17:00:36 +00:00
[[package]]
name = "wasm-bindgen"
2024-03-23 18:32:15 +00:00
version = "0.2.92"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2020-05-24 17:00:36 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-backend"
2024-03-23 18:32:15 +00:00
version = "0.2.92"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2020-05-24 17:00:36 +00:00
dependencies = [
"bumpalo",
"log",
2022-07-29 21:17:02 +00:00
"once_cell",
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2024-03-23 18:32:15 +00:00
version = "0.2.92"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2020-05-24 17:00:36 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-03-23 18:32:15 +00:00
version = "0.2.92"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2020-05-24 17:00:36 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-21 10:51:52 +00:00
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2024-03-23 18:32:15 +00:00
version = "0.2.92"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2020-05-24 17:00:36 +00:00
[[package]]
name = "web-sys"
2024-03-23 18:32:15 +00:00
version = "0.3.69"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
2020-05-24 17:00:36 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
2020-05-24 17:00:36 +00:00
]
2021-01-29 15:11:42 +00:00
[[package]]
name = "whoami"
2024-03-23 18:32:15 +00:00
version = "1.5.1"
2021-01-29 15:11:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
2021-01-29 15:11:42 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"redox_syscall",
"wasite",
2021-01-29 15:11:42 +00:00
"web-sys",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "winapi"
2020-07-05 17:24:59 +00:00
version = "0.3.9"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2020-01-27 23:02:07 +00:00
2020-10-30 17:33:50 +00:00
[[package]]
name = "winapi-util"
2023-10-14 18:00:46 +00:00
version = "0.1.6"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-14 18:00:46 +00:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2020-10-30 17:33:50 +00:00
dependencies = [
"winapi",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2020-01-20 08:43:29 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
2023-10-21 10:51:52 +00:00
name = "windows-core"
2024-01-24 09:47:39 +00:00
version = "0.52.0"
2023-03-03 23:35:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 09:47:39 +00:00
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-03-03 23:35:25 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"windows-targets 0.52.4",
2023-05-26 15:08:55 +00:00
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-22 07:11:09 +00:00
"windows-targets 0.48.5",
2023-03-03 23:35:25 +00:00
]
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-03-23 18:32:15 +00:00
"windows-targets 0.52.4",
2023-12-26 01:33:28 +00:00
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows-targets"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-05-26 15:08:55 +00:00
dependencies = [
2023-08-22 07:11:09 +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-03 23:35:25 +00:00
]
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows-targets"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
2023-12-26 01:33:28 +00:00
dependencies = [
2024-03-23 18:32:15 +00:00
"windows_aarch64_gnullvm 0.52.4",
"windows_aarch64_msvc 0.52.4",
"windows_i686_gnu 0.52.4",
"windows_i686_msvc 0.52.4",
"windows_x86_64_gnu 0.52.4",
"windows_x86_64_gnullvm 0.52.4",
"windows_x86_64_msvc 0.52.4",
2023-12-26 01:33:28 +00:00
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_aarch64_msvc"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_i686_gnu"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_i686_gnu"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_i686_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_i686_msvc"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_x86_64_gnu"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
2023-12-26 01:33:28 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-05-26 15:08:55 +00:00
2023-12-26 01:33:28 +00:00
[[package]]
name = "windows_x86_64_msvc"
2024-03-23 18:32:15 +00:00
version = "0.52.4"
2023-12-26 01:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 18:32:15 +00:00
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
2023-12-26 01:33:28 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
name = "yansi"
version = "0.5.1"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2022-02-18 16:48:49 +00:00
2020-12-19 19:36:51 +00:00
[[package]]
name = "yasna"
2023-05-26 15:08:55 +00:00
version = "0.5.2"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2020-12-19 19:36:51 +00:00
dependencies = [
2023-10-14 18:00:46 +00:00
"time",
2020-12-19 19:36:51 +00:00
]
2023-12-25 16:15:57 +00:00
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"