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

1806 lines
44 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"
2021-11-07 01:05:07 +00:00
version = "0.17.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-07 01:05:07 +00:00
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
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
2021-05-22 14:24:04 +00:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "anyhow"
2022-03-12 10:48:07 +00:00
version = "1.0.56"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
2021-06-15 19:50:01 +00:00
[[package]]
name = "assert_cmd"
2022-01-17 02:01:39 +00:00
version = "2.0.4"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e"
2021-06-15 19:50:01 +00:00
dependencies = [
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2020-10-15 18:26:32 +00:00
[[package]]
name = "async-trait"
2021-12-11 22:10:23 +00:00
version = "0.1.52"
2020-10-15 18:26:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
2020-10-15 18:26:32 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2020-01-20 08:43:29 +00:00
dependencies = [
"hermit-abi",
"libc",
"winapi",
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"
2022-01-31 08:55:07 +00:00
version = "0.3.64"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "5e121dee8023ce33ab248d9ce1493df03c3b38a659b240096fcbd7048ff9c31f"
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",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "base64"
2020-12-02 21:52:49 +00:00
version = "0.13.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 21:52:49 +00:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-01-20 08:43:29 +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",
]
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
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array",
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
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",
"regex-automata",
]
2020-01-20 08:43:29 +00:00
[[package]]
2020-05-24 17:00:36 +00:00
name = "bumpalo"
2022-01-17 02:01:39 +00:00
version = "3.9.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2020-01-20 08:43:29 +00:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2020-01-27 23:02:07 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "byteorder"
2021-05-11 18:57:09 +00:00
version = "1.4.3"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:57:09 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-01-20 08:43:29 +00:00
2021-05-23 13:47:34 +00:00
[[package]]
name = "bytes"
2021-10-22 05:21:32 +00:00
version = "1.1.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-05-23 13:47:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "cc"
2022-02-18 16:48:49 +00:00
version = "1.0.73"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2020-01-20 08:43:29 +00:00
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"
2020-01-20 08:43:29 +00:00
[[package]]
name = "chrono"
2020-10-03 16:24:17 +00:00
version = "0.4.19"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-03 16:24:17 +00:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-01-20 08:43:29 +00:00
dependencies = [
2020-09-27 10:41:51 +00:00
"libc",
"num-integer",
"num-traits",
"serde",
2022-02-18 16:48:49 +00:00
"time 0.1.43",
2020-09-27 10:41:51 +00:00
"winapi",
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
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "clap"
2022-03-12 10:48:07 +00:00
version = "3.1.6"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "d8c93436c21e4698bacadf42917db28b23017027a4deccb35dbe47a7e7840123"
2020-01-20 08:43:29 +00:00
dependencies = [
"atty",
"bitflags",
2020-10-30 17:33:50 +00:00
"clap_derive",
"indexmap",
"lazy_static",
"os_str_bytes",
"strsim",
2020-10-30 17:33:50 +00:00
"termcolor",
"textwrap",
2022-01-02 16:59:21 +00:00
]
[[package]]
name = "clap_complete"
2022-03-12 10:48:07 +00:00
version = "3.1.1"
2022-01-02 16:59:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "df6f3613c0a3cddfd78b41b10203eb322cb29b600cbdf808a7d3db95691b8e25"
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"
2022-03-12 10:48:07 +00:00
version = "3.1.4"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "da95d038ede1a964ce99f49cbe27a7fb538d1da595e4b4f70b8c8f338d17bf16"
2020-10-30 17:33:50 +00:00
dependencies = [
2022-01-17 02:01:39 +00:00
"heck 0.4.0",
2020-10-30 17:33:50 +00:00
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "comfy-table"
2022-02-18 16:48:49 +00:00
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "b103d85ca6e209388771bfb7aa6b68a7aeec4afbf6f0a0264bfbf50360e5212e"
dependencies = [
"crossterm",
2022-02-18 16:48:49 +00:00
"strum",
"strum_macros",
2021-08-10 10:40:48 +00:00
"unicode-width",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "console"
2022-01-17 02:01:39 +00:00
version = "0.15.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 = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31"
2021-05-22 14:24:04 +00:00
dependencies = [
"encode_unicode",
"libc",
2022-01-17 02:01:39 +00:00
"once_cell",
"terminal_size",
2021-05-22 14:24:04 +00:00
"winapi",
]
[[package]]
name = "crossbeam-channel"
2022-01-17 02:01:39 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "crossbeam-utils"
2022-02-18 16:48:49 +00:00
version = "0.8.7"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6"
2020-01-20 08:43:29 +00:00
dependencies = [
"cfg-if",
"lazy_static",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "crossterm"
2022-02-18 16:48:49 +00:00
version = "0.23.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "77b75a27dc8d220f1f8521ea69cd55a34d720a200ebb3a624d9aa19193d3b432"
2020-01-20 08:43:29 +00:00
dependencies = [
"bitflags",
"crossterm_winapi",
"libc",
2022-02-18 16:48:49 +00:00
"mio 0.7.14",
"parking_lot",
"signal-hook",
2021-06-13 13:14:21 +00:00
"signal-hook-mio",
"winapi",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "crossterm_winapi"
2021-11-07 01:05:07 +00:00
version = "0.9.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-07 01:05:07 +00:00
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
2021-02-01 18:59:46 +00:00
[[package]]
name = "ctor"
2021-10-22 05:21:32 +00:00
version = "0.1.21"
2021-02-01 18:59:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa"
2021-02-01 18:59:46 +00:00
dependencies = [
"quote",
"syn",
]
2020-10-15 22:46:19 +00:00
[[package]]
name = "ctrlc"
2021-10-22 05:21:32 +00:00
version = "3.2.1"
2020-10-15 22:46:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "a19c6cedffdc8c03a3346d723eb20bd85a13362bb96dc2ac000842c6381ec7bf"
2020-10-15 22:46:19 +00:00
dependencies = [
2021-08-10 22:04:00 +00:00
"nix",
2020-10-15 22:46:19 +00:00
"winapi",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "diff"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
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"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "dirs"
version = "4.0.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
2020-01-20 08:43:29 +00:00
dependencies = [
"dirs-sys",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "dirs-sys"
2021-05-11 18:53:26 +00:00
version = "0.3.6"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:53:26 +00:00
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
2021-05-11 18:53:26 +00:00
"redox_users",
"winapi",
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
2021-05-11 18:53:26 +00:00
"redox_users",
"winapi",
2020-01-20 08:43:29 +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"
2021-07-08 14:58:18 +00:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
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"
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2022-01-17 02:01:39 +00:00
[[package]]
name = "fastrand"
2022-01-25 11:11:06 +00:00
version = "1.7.0"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
2022-01-17 02:01:39 +00:00
dependencies = [
"instant",
]
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
[[package]]
name = "generic-array"
2021-03-12 12:15:59 +00:00
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-12 12:15:59 +00:00
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
dependencies = [
"typenum",
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "getrandom"
2022-03-12 10:48:07 +00:00
version = "0.2.5"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
2020-12-22 20:30:04 +00:00
dependencies = [
"cfg-if",
2020-12-22 20:30:04 +00:00
"libc",
2022-03-12 10:48:07 +00:00
"wasi 0.10.2+wasi-snapshot-preview1",
2020-12-22 20:30:04 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "gimli"
2021-11-07 01:05:07 +00:00
version = "0.26.1"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-07 01:05:07 +00:00
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
2021-05-22 14:24:04 +00:00
2021-05-11 18:53:26 +00:00
[[package]]
name = "half"
2021-11-07 01:05:07 +00:00
version = "1.8.2"
2021-05-11 18:53:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-07 01:05:07 +00:00
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2021-05-11 18:53:26 +00:00
[[package]]
name = "handlebars"
2022-03-12 10:48:07 +00:00
version = "4.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "99d6a30320f094710245150395bc763ad23128d6a1ebbad7594dc4164b62c56b"
dependencies = [
"log",
"pest",
"pest_derive",
"quick-error",
"serde",
"serde_json",
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "hashbrown"
2021-07-08 14:58:18 +00:00
version = "0.11.2"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 14:58:18 +00:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-10-30 17:33:50 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "heck"
2021-06-04 18:02:55 +00:00
version = "0.3.3"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 18:02:55 +00:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-01-20 08:43:29 +00:00
dependencies = [
"unicode-segmentation",
2020-01-20 08:43:29 +00:00
]
2022-01-17 02:01:39 +00:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2020-01-20 08:43:29 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
2020-01-20 08:43:29 +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
2020-10-30 17:33:50 +00:00
[[package]]
name = "indexmap"
2022-01-17 02:01:39 +00:00
version = "1.8.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
2020-10-30 17:33:50 +00:00
dependencies = [
"autocfg",
"hashbrown",
]
2020-10-03 16:24:17 +00:00
[[package]]
name = "instant"
2021-10-22 05:21:32 +00:00
version = "0.1.12"
2020-10-03 16:24:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-10-03 16:24:17 +00:00
dependencies = [
"cfg-if",
2020-10-03 16:24:17 +00:00
]
2021-07-08 14:58:18 +00:00
[[package]]
name = "itertools"
2021-12-11 22:10:23 +00:00
version = "0.10.3"
2021-07-08 14:58:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-07-08 14:58:18 +00:00
dependencies = [
"either",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "itoa"
2022-01-02 18:04:34 +00:00
version = "1.0.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2020-01-20 08:43:29 +00:00
2020-05-24 17:00:36 +00:00
[[package]]
name = "js-sys"
2022-01-25 11:11:06 +00:00
version = "0.3.56"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
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 = "libc"
2022-03-12 10:48:07 +00:00
version = "0.2.119"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
2020-01-20 08:43:29 +00:00
[[package]]
name = "linked-hash-map"
2021-01-15 00:39:07 +00:00
version = "0.5.4"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 00:39:07 +00:00
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2020-01-20 08:43:29 +00:00
[[package]]
name = "lock_api"
2022-01-31 08:55:07 +00:00
version = "0.4.6"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
2020-01-20 08:43:29 +00:00
dependencies = [
"scopeguard",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "log"
2021-02-01 18:59:46 +00:00
version = "0.4.14"
2020-07-05 17:24:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-01 18:59:46 +00:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-07-05 17:24:59 +00:00
dependencies = [
"cfg-if",
2020-07-05 17:24:59 +00:00
]
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2020-01-20 08:43:29 +00:00
[[package]]
name = "memchr"
2021-08-18 23:46:38 +00:00
version = "2.4.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-18 23:46:38 +00:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2020-01-20 08:43:29 +00:00
2021-06-04 18:02:55 +00:00
[[package]]
name = "memoffset"
2021-12-11 22:10:23 +00:00
version = "0.6.5"
2021-06-04 18:02:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-06-04 18:02:55 +00:00
dependencies = [
"autocfg",
]
2020-12-02 21:52:49 +00:00
[[package]]
name = "miniz_oxide"
2021-02-25 21:49:26 +00:00
version = "0.4.4"
2020-12-02 21:52:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-25 21:49:26 +00:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2020-12-02 21:52:49 +00:00
dependencies = [
"adler",
"autocfg",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "mio"
2021-10-22 05:21:32 +00:00
version = "0.7.14"
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 = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "mio"
2022-03-12 10:48:07 +00:00
version = "0.8.1"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "7ba42135c6a5917b9db9cd7b293e5409e1c6b041e6f9825e92e55a894c63b6f8"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
"log",
"miow",
"ntapi",
2022-03-12 10:48:07 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-02-18 16:48:49 +00:00
"winapi",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "miow"
2021-03-30 16:57:25 +00:00
version = "0.3.7"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-30 16:57:25 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
2021-06-04 18:02:55 +00:00
[[package]]
name = "nix"
2022-01-02 18:04:34 +00:00
version = "0.23.1"
2021-06-04 18:02:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
2021-06-04 18:02:55 +00:00
dependencies = [
"bitflags",
"cc",
"cfg-if",
"libc",
"memoffset",
]
2020-07-11 14:19:16 +00:00
[[package]]
name = "ntapi"
2022-02-18 16:48:49 +00:00
version = "0.3.7"
2020-07-11 14:19:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
2020-07-11 14:19:16 +00:00
dependencies = [
"winapi",
2020-07-11 14:19:16 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "num-integer"
2020-10-30 17:33:50 +00:00
version = "0.1.44"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-30 17:33:50 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
"num-traits",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num-traits"
2020-10-30 17:33:50 +00:00
version = "0.2.14"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-30 17:33:50 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num_cpus"
2022-01-02 18:04:34 +00:00
version = "1.13.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2020-01-20 08:43:29 +00:00
dependencies = [
"hermit-abi",
"libc",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "num_threads"
2022-03-12 10:48:07 +00:00
version = "0.1.4"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "c539a50b93a303167eded6e8dff5220cd39447409fb659f4cd24b1f72fe4f133"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "object"
2021-11-07 01:05:07 +00:00
version = "0.27.1"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-07 01:05:07 +00:00
checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"
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"
2022-03-12 10:48:07 +00:00
version = "1.10.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2020-01-20 08:43:29 +00:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2020-10-30 17:33:50 +00:00
[[package]]
name = "os_str_bytes"
2022-01-02 16:59:21 +00:00
version = "6.0.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 16:59:21 +00:00
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
2021-10-22 05:21:32 +00:00
dependencies = [
"memchr",
]
2020-10-30 17:33:50 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "output_vt100"
2022-02-18 16:48:49 +00:00
version = "0.1.3"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
2021-05-22 14:24:04 +00:00
dependencies = [
"winapi",
]
[[package]]
name = "parking_lot"
2022-02-18 16:48:49 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-02-18 16:48:49 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954"
dependencies = [
"cfg-if",
"libc",
2021-05-11 18:53:26 +00:00
"redox_syscall",
"smallvec",
2022-02-18 16:48:49 +00:00
"windows-sys",
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "pem"
2022-01-17 02:01:39 +00:00
version = "1.0.2"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947"
2020-12-19 19:36:51 +00:00
dependencies = [
"base64",
]
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
dependencies = [
"maplit",
"pest",
"sha-1",
2020-05-13 20:20:27 +00:00
]
2020-12-12 22:11:27 +00:00
[[package]]
name = "pin-project-lite"
2022-01-02 18:04:34 +00:00
version = "0.2.8"
2020-12-12 22:11:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2020-12-12 22:11:27 +00:00
[[package]]
name = "portpicker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
dependencies = [
2022-02-18 16:48:49 +00:00
"rand 0.8.5",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "ppv-lite86"
2022-01-02 18:04:34 +00:00
version = "0.2.16"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-01-20 08:43:29 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates"
2022-01-17 02:01:39 +00:00
version = "2.1.1"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
2021-06-15 19:50:01 +00:00
dependencies = [
2021-07-08 14:58:18 +00:00
"difflib",
"itertools",
2021-06-15 19:50:01 +00:00
"predicates-core",
]
[[package]]
name = "predicates-core"
2022-01-17 02:01:39 +00:00
version = "1.0.3"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb"
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates-tree"
2022-01-17 02:01:39 +00:00
version = "1.0.5"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032"
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"
2022-03-12 10:48:07 +00:00
version = "1.2.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "57c038cb5319b9c704bf9c227c261d275bfec0ad438118a2787ce47944fb228b"
2021-05-22 14:24:04 +00:00
dependencies = [
"ansi_term",
"ctor",
"diff",
"output_vt100",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro2",
"quote",
"version_check",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "proc-macro2"
2022-01-02 18:04:34 +00:00
version = "1.0.36"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2020-01-20 08:43:29 +00:00
dependencies = [
"unicode-xid",
2020-01-20 08:43:29 +00:00
]
2020-05-31 16:11:01 +00:00
[[package]]
name = "procfs"
2022-01-02 18:04:34 +00:00
version = "0.12.0"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "0941606b9934e2d98a3677759a971756eb821f75764d0e0d26946d08e74d9104"
2020-05-31 16:11:01 +00:00
dependencies = [
"bitflags",
"byteorder",
"hex",
"lazy_static",
"libc",
2020-05-31 16:11:01 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "pueue"
2022-03-12 13:30:25 +00:00
version = "2.0.1"
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",
"crossbeam-channel",
"crossterm",
2020-10-15 22:46:19 +00:00
"ctrlc",
"handlebars",
"log",
2021-08-10 22:04:00 +00:00
"nix",
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",
"shell-escape",
"simplelog",
"snap",
"tempfile",
2021-05-23 13:47:34 +00:00
"tokio",
2021-01-29 15:11:42 +00:00
"whoami",
2021-03-03 14:23:36 +00:00
"winapi",
2021-01-17 17:17:44 +00:00
]
[[package]]
name = "pueue-lib"
2022-03-12 13:13:23 +00:00
version = "0.19.4"
dependencies = [
"anyhow",
"async-trait",
"better-panic",
"byteorder",
"chrono",
"dirs",
"log",
"portpicker",
"pretty_assertions",
2022-02-18 16:48:49 +00:00
"rand 0.8.5",
"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",
2022-02-18 16:48:49 +00:00
"strum",
"strum_macros",
"tempdir",
"thiserror",
"tokio",
"tokio-rustls",
2021-02-01 18:58:24 +00:00
"whoami",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "quick-error"
2021-05-11 18:57:09 +00:00
version = "2.0.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:57:09 +00:00
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2020-01-20 08:43:29 +00:00
2020-01-27 23:02:07 +00:00
[[package]]
name = "quote"
2022-01-25 11:11:06 +00:00
version = "1.0.15"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
2020-01-27 23:02:07 +00:00
dependencies = [
"proc-macro2",
2020-02-05 21:18:23 +00:00
]
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
dependencies = [
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi",
]
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 0.6.3",
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 0.6.3",
]
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
2020-12-22 20:30:04 +00:00
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2020-12-22 20:30:04 +00:00
[[package]]
name = "rand_core"
2021-06-15 19:50:01 +00:00
version = "0.6.3"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-15 19:50:01 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
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"
2022-03-12 10:48:07 +00:00
version = "0.9.2"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "d7fa2d386df8533b02184941c76ae2e0d0c1d053f5d43339169d80f21275fc5e"
2020-12-19 19:36:51 +00:00
dependencies = [
"pem",
"ring",
2022-02-18 16:48:49 +00:00
"time 0.3.7",
2020-12-19 19:36:51 +00:00
"yasna",
]
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
"rand_core 0.3.1",
]
2021-01-15 00:39:07 +00:00
[[package]]
name = "redox_syscall"
2022-03-12 10:48:07 +00:00
version = "0.2.11"
2021-01-15 00:39:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
2021-01-15 00:39:07 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
2021-05-11 18:53:26 +00:00
"getrandom",
"redox_syscall",
]
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"
2020-01-20 08:43:29 +00:00
[[package]]
name = "remove_dir_all"
2020-07-05 17:24:59 +00:00
version = "0.5.3"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
[[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"
version = "0.16.20"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2020-10-30 23:02:12 +00:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
[[package]]
name = "rstest"
2022-01-02 18:04:34 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "d912f35156a3f99a66ee3e11ac2e0b3f34ac85a07e05263d05a7e2c8810d616f"
dependencies = [
"cfg-if",
"proc-macro2",
"quote",
"rustc_version",
"syn",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-demangle"
2021-10-22 05:21:32 +00:00
version = "0.1.21"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2021-05-22 14:24:04 +00:00
[[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",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "rustls"
2022-03-12 10:48:07 +00:00
version = "0.20.4"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "4fbfeb8d0ddb84706bc597a5574ab8912817c52a397f819e5b614e2265206921"
2020-10-30 23:02:12 +00:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
dependencies = [
"base64",
]
2022-01-02 18:04:34 +00:00
[[package]]
name = "rustversion"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
2020-01-20 08:43:29 +00:00
[[package]]
name = "ryu"
2022-01-02 18:04:34 +00:00
version = "1.0.9"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
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"
2020-03-21 09:44:46 +00:00
version = "1.1.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2020-05-24 17:00:36 +00:00
2020-10-30 23:02:12 +00:00
[[package]]
name = "sct"
version = "0.7.0"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2020-10-30 23:02:12 +00:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "semver"
2022-03-12 10:48:07 +00:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "a4a3381e03edd24287172047536f20cabde766e2cd3e65e6b00fb3af51c4f38d"
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde"
2022-01-31 08:55:07 +00:00
version = "1.0.136"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
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"
2022-01-31 08:55:07 +00:00
version = "1.0.136"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_json"
2022-02-18 16:48:49 +00:00
version = "1.0.79"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
2020-01-20 08:43:29 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_yaml"
2022-01-02 18:04:34 +00:00
version = "0.8.23"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
2020-01-20 08:43:29 +00:00
dependencies = [
2021-10-22 05:21:32 +00:00
"indexmap",
2022-01-02 18:04:34 +00:00
"ryu",
"serde",
"yaml-rust",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer",
"digest",
"fake-simd",
"opaque-debug",
]
[[package]]
name = "shell-escape"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
[[package]]
name = "shellexpand"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829"
dependencies = [
"dirs-next",
]
[[package]]
name = "signal-hook"
2022-01-02 18:04:34 +00:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d"
dependencies = [
"libc",
"signal-hook-registry",
]
2021-06-13 13:14:21 +00:00
[[package]]
name = "signal-hook-mio"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29fd5867f1c4f2c5be079aee7a2adf1152ebb04a4bc4d341f504b7dece607ed4"
dependencies = [
"libc",
2022-02-18 16:48:49 +00:00
"mio 0.7.14",
2021-06-13 13:14:21 +00:00
"signal-hook",
]
[[package]]
name = "signal-hook-registry"
2021-06-04 18:02:55 +00:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 18:02:55 +00:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "simplelog"
2022-01-17 02:01:39 +00:00
version = "0.11.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "c1348164456f72ca0116e4538bdaabb0ddb622c7d9f16387c725af3e96d6001c"
2020-01-20 08:43:29 +00:00
dependencies = [
"chrono",
"log",
2020-01-27 23:02:07 +00:00
]
[[package]]
name = "smallvec"
2022-01-17 02:01:39 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
2020-05-24 17:00:36 +00:00
2020-04-30 19:09:24 +00:00
[[package]]
name = "snap"
2021-05-11 18:57:09 +00:00
version = "1.0.5"
2020-04-30 19:09:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:57:09 +00:00
checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451"
2020-04-30 19:09:24 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "socket2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
"winapi",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-01-20 08:43:29 +00:00
[[package]]
name = "strsim"
2020-10-30 17:33:50 +00:00
version = "0.10.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-30 17:33:50 +00:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2020-01-20 08:43:29 +00:00
2022-01-02 18:04:34 +00:00
[[package]]
name = "strum"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cae14b91c7d11c9a851d3fbc80a963198998c2a64eec840477fa92d8ce9b70bb"
[[package]]
name = "strum_macros"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38"
dependencies = [
2022-01-17 02:01:39 +00:00
"heck 0.3.3",
2022-01-02 18:04:34 +00:00
"proc-macro2",
"quote",
"rustversion",
"syn",
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "syn"
2022-01-25 11:11:06 +00:00
version = "1.0.86"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
2020-01-27 23:02:07 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
2020-01-27 23:02:07 +00:00
]
[[package]]
name = "tempdir"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
dependencies = [
"rand 0.4.6",
"remove_dir_all",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "tempfile"
2022-01-17 02:01:39 +00:00
version = "3.3.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2020-01-20 08:43:29 +00:00
dependencies = [
"cfg-if",
2022-01-17 02:01:39 +00:00
"fastrand",
"libc",
2021-05-11 18:53:26 +00:00
"redox_syscall",
"remove_dir_all",
"winapi",
2020-01-20 08:43:29 +00:00
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "termcolor"
2022-03-12 10:48:07 +00:00
version = "1.1.3"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2020-10-30 17:33:50 +00:00
dependencies = [
"winapi-util",
]
2021-05-22 14:24:04 +00:00
[[package]]
2022-01-17 02:01:39 +00:00
name = "terminal_size"
version = "0.1.17"
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 = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2021-05-22 14:24:04 +00:00
dependencies = [
"libc",
2022-01-17 02:01:39 +00:00
"winapi",
2021-05-22 14:24:04 +00:00
]
2021-10-22 05:21:32 +00:00
[[package]]
name = "termtree"
2022-01-17 02:01:39 +00:00
version = "0.2.4"
2021-10-22 05:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
2021-10-22 05:21:32 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "textwrap"
2022-03-12 10:48:07 +00:00
version = "0.15.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-12 10:48:07 +00:00
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2020-01-20 08:43:29 +00:00
2020-09-27 10:41:51 +00:00
[[package]]
name = "thiserror"
2021-10-22 05:21:32 +00:00
version = "1.0.30"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2020-09-27 10:41:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-22 05:21:32 +00:00
version = "1.0.30"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2020-09-27 10:41:51 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "time"
2021-01-15 00:39:07 +00:00
version = "0.1.43"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 00:39:07 +00:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
"winapi",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "time"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d"
dependencies = [
"libc",
"num_threads",
]
2021-05-23 13:47:34 +00:00
[[package]]
name = "tokio"
2022-02-18 16:48:49 +00:00
version = "1.17.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
2021-05-23 13:47:34 +00:00
dependencies = [
"bytes",
"libc",
2021-05-23 13:47:34 +00:00
"memchr",
2022-03-12 10:48:07 +00:00
"mio 0.8.1",
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",
"winapi",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-macros"
2022-01-02 18:04:34 +00:00
version = "1.7.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2021-05-23 13:47:34 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-rustls"
2022-01-02 18:04:34 +00:00
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "a27d5f2b839802bd8267fa19b0530f5a08b9c08cd417976be2a65d130fe1c11b"
dependencies = [
"rustls",
"tokio",
"webpki",
]
[[package]]
name = "typenum"
2022-01-02 18:04:34 +00:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-segmentation"
2022-02-18 16:48:49 +00:00
version = "1.9.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-width"
2021-10-22 05:21:32 +00:00
version = "0.1.9"
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 = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-xid"
2021-05-11 18:57:09 +00:00
version = "0.2.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:57:09 +00:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-01-20 08:43:29 +00:00
2020-10-30 23:02:12 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
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",
]
2020-09-14 05:51:41 +00:00
[[package]]
name = "wasi"
2021-02-01 18:59:46 +00:00
version = "0.10.2+wasi-snapshot-preview1"
2020-09-14 05:51:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-01 18:59:46 +00:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-09-14 05:51:41 +00:00
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"
2020-05-24 17:00:36 +00:00
[[package]]
name = "wasm-bindgen"
2022-01-25 11:11:06 +00:00
version = "0.2.79"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
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"
2022-01-25 11:11:06 +00:00
version = "0.2.79"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
2020-05-24 17:00:36 +00:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2022-01-25 11:11:06 +00:00
version = "0.2.79"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
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"
2022-01-25 11:11:06 +00:00
version = "0.2.79"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
2020-05-24 17:00:36 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2022-01-25 11:11:06 +00:00
version = "0.2.79"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
2020-05-24 17:00:36 +00:00
[[package]]
name = "web-sys"
2022-01-25 11:11:06 +00:00
version = "0.3.56"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 11:11:06 +00:00
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
2020-05-24 17:00:36 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
2020-05-24 17:00:36 +00:00
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "webpki"
version = "0.22.0"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2020-10-30 23:02:12 +00:00
dependencies = [
"ring",
"untrusted",
]
2021-01-29 15:11:42 +00:00
[[package]]
name = "whoami"
2021-12-11 22:10:23 +00:00
version = "1.2.1"
2021-01-29 15:11:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8"
2021-01-29 15:11:42 +00:00
dependencies = [
"wasm-bindgen",
"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"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
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]]
name = "windows-sys"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5"
[[package]]
name = "windows_i686_gnu"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615"
[[package]]
name = "windows_i686_msvc"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172"
[[package]]
name = "windows_x86_64_gnu"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc"
[[package]]
name = "windows_x86_64_msvc"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
2020-01-20 08:43:29 +00:00
[[package]]
name = "yaml-rust"
2021-01-15 00:39:07 +00:00
version = "0.4.5"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-15 00:39:07 +00:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-01-20 08:43:29 +00:00
dependencies = [
"linked-hash-map",
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "yasna"
2022-02-18 16:48:49 +00:00
version = "0.5.0"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c"
2020-12-19 19:36:51 +00:00
dependencies = [
2022-02-18 16:48:49 +00:00
"time 0.3.7",
2020-12-19 19:36:51 +00:00
]