1
0
mirror of https://github.com/nukesor/pueue synced 2024-07-05 17:19:09 +00:00
pueue/Cargo.lock

2264 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"
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
[[package]]
name = "aho-corasick"
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [
"memchr",
]
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",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "anyhow"
2022-11-21 13:42:06 +00:00
version = "1.0.66"
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 = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
2021-06-15 19:50:01 +00:00
[[package]]
name = "assert_cmd"
version = "2.0.7"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa3d466004a8b4cb1bc34044240a2fd29d17607e2e3bd613eb44fd48e8100da3"
2021-06-15 19:50:01 +00:00
dependencies = [
2022-11-21 13:42:06 +00:00
"bstr 1.0.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"
version = "0.1.59"
2020-10-15 18:26:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e6e93155431f3931513b243d371981bb2770112b370c82745a1d19d2f99364"
2020-10-15 18:26:32 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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-07-18 20:17:37 +00:00
version = "0.3.66"
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 = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
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"
2022-11-21 13:42:06 +00:00
version = "0.13.1"
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 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
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",
]
[[package]]
name = "bindgen"
version = "0.59.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
]
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"
2022-11-21 13:42:06 +00:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
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",
"regex-automata",
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "bstr"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fca0852af221f458706eb0725c03e4ed6c46af9ac98e6a689d5e634215d594dd"
dependencies = [
"memchr",
"once_cell",
"regex-automata",
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
2020-05-24 17:00:36 +00:00
name = "bumpalo"
2022-11-21 13:42:06 +00:00
version = "3.11.1"
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 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
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"
2022-11-21 13:42:06 +00:00
version = "1.3.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
2021-05-23 13:47:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "cc"
2022-11-21 13:42:06 +00:00
version = "1.0.77"
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 = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
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"
2020-01-20 08:43:29 +00:00
[[package]]
name = "chrono"
2022-11-21 13:42:06 +00:00
version = "0.4.23"
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 = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
2020-01-20 08:43:29 +00:00
dependencies = [
2022-08-21 11:45:45 +00:00
"iana-time-zone",
"js-sys",
"num-integer",
"num-traits",
"serde",
"time 0.1.45",
2022-08-21 11:45:45 +00:00
"wasm-bindgen",
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
]
[[package]]
name = "clang-sys"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
dependencies = [
"glob",
"libc",
"libloading",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "clap"
version = "4.0.29"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d"
2020-01-20 08:43:29 +00:00
dependencies = [
"bitflags",
2020-10-30 17:33:50 +00:00
"clap_derive",
2022-05-09 18:02:45 +00:00
"clap_lex",
"is-terminal",
2022-06-22 17:56:46 +00:00
"once_cell",
"strsim",
2020-10-30 17:33:50 +00:00
"termcolor",
2022-01-02 16:59:21 +00:00
]
[[package]]
name = "clap_complete"
version = "4.0.6"
2022-01-02 16:59:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7b3c9eae0de7bf8e3f904a5e40612b21fb2e2e566456d177809a48b892d24da"
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-11-21 16:07:36 +00:00
version = "4.0.21"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 16:07:36 +00:00
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
2020-10-30 17:33:50 +00:00
dependencies = [
2022-05-30 23:42:40 +00:00
"heck",
2020-10-30 17:33:50 +00:00
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2022-05-09 18:02:45 +00:00
[[package]]
name = "clap_lex"
2022-10-12 20:04:06 +00:00
version = "0.3.0"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 20:04:06 +00:00
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
2022-05-09 18:02:45 +00:00
dependencies = [
"os_str_bytes",
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
[[package]]
name = "comfy-table"
version = "6.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e621e7e86c46fd8a14c32c6ae3cb95656621b4743a27d0cffedb831d46e7ad21"
dependencies = [
"crossterm",
2022-02-18 16:48:49 +00:00
"strum",
"strum_macros",
2021-08-10 10:40:48 +00:00
"unicode-width",
]
[[package]]
name = "command-group"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98782b6b757b633bd1da9d1a4ee7d323a6bd205a32b1c242d5e56e7092dfd3f"
dependencies = [
"nix",
"winapi",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "console"
2022-11-21 13:42:06 +00:00
version = "0.15.2"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
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",
2022-01-17 02:01:39 +00:00
"terminal_size",
2021-05-22 14:24:04 +00:00
"winapi",
]
2022-08-21 11:45:45 +00:00
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-07-29 21:17:02 +00:00
[[package]]
name = "cpufeatures"
2022-11-21 13:42:06 +00:00
version = "0.2.5"
2022-07-29 21:17:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2022-07-29 21:17:02 +00:00
dependencies = [
"libc",
]
[[package]]
name = "crossbeam-channel"
2022-07-29 21:17:02 +00:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:17:02 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "crossbeam-utils"
version = "0.8.14"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
2020-01-20 08:43:29 +00:00
dependencies = [
"cfg-if",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "crossterm"
version = "0.25.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
2020-01-20 08:43:29 +00:00
dependencies = [
"bitflags",
"crossterm_winapi",
"libc",
2022-05-09 18:02:45 +00:00
"mio",
"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
]
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",
]
2021-02-01 18:59:46 +00:00
[[package]]
name = "ctor"
2022-11-21 13:42:06 +00:00
version = "0.1.26"
2021-02-01 18:59:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
2021-02-01 18:59:46 +00:00
dependencies = [
"quote",
"syn",
]
2020-10-15 22:46:19 +00:00
[[package]]
name = "ctrlc"
version = "3.2.4"
2020-10-15 22:46:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1631ca6e3c59112501a9d87fd86f21591ff77acd31331e8a73f8d80a65bbdd71"
2020-10-15 22:46:19 +00:00
dependencies = [
"nix",
"windows-sys",
2020-10-15 22:46:19 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "cxx"
version = "1.0.83"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdf07d07d6531bfcdbe9b8b739b104610c6508dcc4d63b410585faf338241daf"
2022-11-21 13:42:06 +00:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.83"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2eb5b96ecdc99f72657332953d4d9c50135af1bac34277801cc3937906ebd39"
2022-11-21 13:42:06 +00:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.83"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac040a39517fd1674e0f32177648334b0f4074625b5588a64519804ba0553b12"
2022-11-21 13:42:06 +00:00
[[package]]
name = "cxxbridge-macro"
version = "1.0.83"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1362b0ddcfc4eb0a1f57b68bd77dd99f0e826958a96abd0ae9bd092e114ffed6"
2022-11-21 13:42:06 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "darwin-libproc"
version = "0.2.0"
source = "git+https://github.com/jamwaffles/darwin-libproc.git?rev=cbd571e4be87a6603de328d1f1f0ad54d7bdfedf#cbd571e4be87a6603de328d1f1f0ad54d7bdfedf"
dependencies = [
"darwin-libproc-sys",
"libc",
"memchr",
]
[[package]]
name = "darwin-libproc-sys"
version = "0.2.0"
source = "git+https://github.com/jamwaffles/darwin-libproc.git?rev=cbd571e4be87a6603de328d1f1f0ad54d7bdfedf#cbd571e4be87a6603de328d1f1f0ad54d7bdfedf"
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"
2022-11-21 13:42:06 +00:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
dependencies = [
2022-07-29 21:17:02 +00:00
"block-buffer",
"crypto-common",
]
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-sys"
2022-03-24 22:03:41 +00:00
version = "0.3.7"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-24 22:03:41 +00:00
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
2021-05-11 18:53:26 +00:00
"redox_users",
"winapi",
]
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"
2022-08-21 11:45:45 +00:00
version = "1.8.0"
2021-07-08 14:58:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2021-07-08 14:58:18 +00:00
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 = "env_logger"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
dependencies = [
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-01-17 02:01:39 +00:00
[[package]]
name = "fastrand"
2022-07-29 21:17:02 +00:00
version = "1.8.0"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:17:02 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
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"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
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"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-executor"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-macro"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
2022-06-22 17:56:46 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-task"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-timer"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
[[package]]
name = "futures-util"
2022-11-21 13:42:06 +00:00
version = "0.3.25"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
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"
2022-08-21 11:45:45 +00:00
version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [
"typenum",
2022-07-29 21:17:02 +00:00
"version_check",
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "getrandom"
2022-11-21 13:42:06 +00:00
version = "0.2.8"
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 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2020-12-22 20:30:04 +00:00
dependencies = [
"cfg-if",
2020-12-22 20:30:04 +00:00
"libc",
2022-06-22 17:56:46 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2020-12-22 20:30:04 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "gimli"
2022-07-18 20:17:37 +00:00
version = "0.26.2"
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 = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2021-05-22 14:24:04 +00:00
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
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-11-21 13:42:06 +00:00
version = "4.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "433e4ab33f1213cdc25b5fa45c76881240cfe79284cf2b395e8b9e312a30a2fd"
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"
2022-07-18 20:17:37 +00:00
version = "0.12.3"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2020-10-30 17:33:50 +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
]
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
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"
2022-11-21 13:42:06 +00:00
version = "0.1.53"
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 = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
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",
"winapi",
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "indexmap"
2022-11-21 13:42:06 +00:00
version = "1.9.2"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
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
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "io-lifetimes"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
dependencies = [
"libc",
"windows-sys",
]
[[package]]
name = "is-terminal"
version = "0.4.1"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes",
"rustix",
"windows-sys",
]
2022-07-29 21:27:21 +00:00
2021-07-08 14:58:18 +00:00
[[package]]
name = "itertools"
2022-11-21 13:42:06 +00:00
version = "0.10.5"
2021-07-08 14:58:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-07-08 14:58:18 +00:00
dependencies = [
"either",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "itoa"
2022-11-21 13:42:06 +00:00
version = "1.0.4"
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 = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2020-01-20 08:43:29 +00:00
2020-05-24 17:00:36 +00:00
[[package]]
name = "js-sys"
2022-11-21 13:42:06 +00:00
version = "0.3.60"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
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"
version = "0.2.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
[[package]]
name = "libloading"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
dependencies = [
"cfg-if",
"winapi",
]
[[package]]
name = "libproc"
version = "0.12.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b799ad155d75ce914c467ee5627b62247c20d4aedbd446f821484cebf3cded7"
dependencies = [
"bindgen",
"errno",
"libc",
]
2020-01-20 08:43:29 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.1.3"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
2022-07-29 21:27:21 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "lock_api"
2022-11-21 13:42:06 +00:00
version = "0.4.9"
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 = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
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"
2022-05-09 18:02:45 +00:00
version = "0.4.17"
2020-07-05 17:24:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-07-05 17:24:59 +00:00
dependencies = [
"cfg-if",
2020-07-05 17:24:59 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "memchr"
2022-05-09 18:02:45 +00:00
version = "2.5.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
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"
2022-11-21 13:42:06 +00:00
version = "0.5.4"
2020-12-02 21:52:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
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"
2022-11-21 13:42:06 +00:00
version = "0.8.5"
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 = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
"log",
2022-03-12 10:48:07 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-05-09 18:02:45 +00:00
"windows-sys",
2020-01-20 08:43:29 +00:00
]
2021-06-04 18:02:55 +00:00
[[package]]
name = "nix"
version = "0.26.1"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
2022-08-21 11:45:45 +00:00
dependencies = [
"bitflags",
"cfg-if",
"libc",
"static_assertions",
2022-08-21 11:45:45 +00:00
]
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "num-integer"
2022-05-09 18:02:45 +00:00
version = "0.1.45"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
"num-traits",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num-traits"
2022-05-09 18:02:45 +00:00
version = "0.2.15"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num_cpus"
2022-11-21 13:42:06 +00:00
version = "1.14.0"
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 = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
2020-01-20 08:43:29 +00:00
dependencies = [
"hermit-abi 0.1.19",
"libc",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "num_threads"
2022-05-09 18:02:45 +00:00
version = "0.1.6"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "object"
2022-07-18 20:17:37 +00:00
version = "0.29.0"
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 = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
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-11-21 13:42:06 +00:00
version = "1.16.0"
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 = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2020-01-20 08:43:29 +00:00
2020-10-30 17:33:50 +00:00
[[package]]
name = "os_str_bytes"
2022-11-21 13:42:06 +00:00
version = "6.4.1"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
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-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"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba"
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",
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2020-12-19 19:36:51 +00:00
[[package]]
name = "pem"
2022-07-18 20:17:37 +00:00
version = "1.1.0"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
2020-12-19 19:36:51 +00:00
dependencies = [
"base64",
]
[[package]]
name = "pest"
version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc8bed3549e0f9b0a2a78bf7c0018237a2cdf085eecbbc048e52612438e4e9d0"
dependencies = [
2022-07-29 21:17:02 +00:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdc078600d06ff90d4ed238f0119d84ab5d43dbaad278b0e33a8820293b32344"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28a1af60b1c4148bb269006a750cff8e2ea36aff34d2d96cf7be0b14d1bed23c"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fec8605d59fc2ae0c6c1aefc0c7c7a9769732017c0ce07f7a9cfffa7b4404f20"
dependencies = [
2022-07-29 21:17:02 +00:00
"once_cell",
"pest",
2022-08-28 15:33:02 +00:00
"sha1",
2020-05-13 20:20:27 +00:00
]
2020-12-12 22:11:27 +00:00
[[package]]
name = "pin-project-lite"
2022-05-09 18:02:45 +00:00
version = "0.2.9"
2020-12-12 22:11:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
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 = [
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-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"
version = "2.1.4"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f54fc5dc63ed3bbf19494623db4f3af16842c0d975818e469022d09e53f0aa05"
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-11-21 13:42:06 +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-11-21 13:42:06 +00:00
checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2"
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates-tree"
2022-11-21 13:42:06 +00:00
version = "1.0.7"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
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-11-21 13:42:06 +00:00
version = "1.3.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
2021-05-22 14:24:04 +00:00
dependencies = [
"ctor",
"diff",
"output_vt100",
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-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-11-21 13:42:06 +00:00
version = "1.0.47"
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 = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
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"
version = "0.14.2"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69"
2020-05-31 16:11:01 +00:00
dependencies = [
"bitflags",
"byteorder",
"hex",
"lazy_static",
2022-07-29 21:27:21 +00:00
"rustix",
2020-05-31 16:11:01 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "pueue"
2022-12-12 21:03:18 +00:00
version = "3.0.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",
"crossbeam-channel",
"crossterm",
2020-10-15 22:46:19 +00:00
"ctrlc",
"env_logger",
"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",
"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"
2022-12-12 21:01:43 +00:00
version = "0.21.0"
dependencies = [
"anyhow",
"async-trait",
"better-panic",
"byteorder",
"chrono",
"command-group",
"darwin-libproc",
"dirs",
"libproc",
"log",
"portpicker",
"pretty_assertions",
"procfs",
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",
"winapi",
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "quote"
2022-08-21 11:45:45 +00:00
version = "1.0.21"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
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",
2022-11-21 13:42:06 +00:00
"rand_core 0.6.4",
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",
2022-11-21 13:42:06 +00:00
"rand_core 0.6.4",
]
[[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"
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"
version = "0.10.0"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
2020-12-19 19:36:51 +00:00
dependencies = [
"pem",
"ring",
2022-11-21 13:42:06 +00:00
"time 0.3.17",
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-07-29 21:17:02 +00:00
version = "0.2.16"
2021-01-15 00:39:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:17:02 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-01-15 00:39:07 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
2022-05-09 18:02:45 +00:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2021-05-11 18:53:26 +00:00
"getrandom",
"redox_syscall",
2022-03-24 22:03:41 +00:00
"thiserror",
]
[[package]]
name = "regex"
2022-11-21 13:42:06 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
dependencies = [
"aho-corasick",
"memchr",
"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"
[[package]]
name = "regex-syntax"
2022-11-21 13:42:06 +00:00
version = "0.6.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
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"
version = "0.16.0"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b07f2d176c472198ec1e6551dc7da28f1c089652f66a7b722676c2238ebc0edf"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7229b505ae0706e64f37ffc54a9c163e11022a6636d58fe1f3f52018257ff9f7"
dependencies = [
"cfg-if",
"proc-macro2",
"quote",
"rustc_version",
"syn",
"unicode-ident",
]
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-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"
version = "0.36.5"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588"
2022-07-29 21:27:21 +00:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "rustls"
2022-11-21 13:42:06 +00:00
version = "0.20.7"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
2020-10-30 23:02:12 +00:00
dependencies = [
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
2022-08-21 11:45:45 +00:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
dependencies = [
"base64",
]
2022-01-02 18:04:34 +00:00
[[package]]
name = "rustversion"
2022-08-21 11:45:45 +00:00
version = "1.0.9"
2022-01-02 18:04:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
2022-01-02 18:04:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "ryu"
2022-08-21 11:45:45 +00:00
version = "1.0.11"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
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
2022-11-21 13:42:06 +00:00
[[package]]
name = "scratch"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
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-11-21 13:42:06 +00:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde"
version = "1.0.150"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91"
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"
version = "1.0.150"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e"
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"
version = "1.0.89"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
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-11-21 13:42:06 +00:00
version = "0.9.14"
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 = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da"
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]]
2022-08-28 15:33:02 +00:00
name = "sha1"
2022-11-21 13:42:06 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
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"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd1c7ddea665294d484c39fd0c0d2b7e35bbfe10035c5fe1854741a57f6880e1"
dependencies = [
2022-08-21 11:45:45 +00:00
"dirs",
]
[[package]]
name = "shlex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "signal-hook"
2022-05-30 23:42:40 +00:00
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 23:42:40 +00:00
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
dependencies = [
"libc",
"signal-hook-registry",
]
2021-06-13 13:14:21 +00:00
[[package]]
name = "signal-hook-mio"
2022-05-09 18:02:45 +00:00
version = "0.2.3"
2021-06-13 13:14:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
2021-06-13 13:14:21 +00:00
dependencies = [
"libc",
2022-05-09 18:02:45 +00:00
"mio",
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",
]
[[package]]
name = "similar"
2022-11-21 13:42:06 +00:00
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
dependencies = [
2022-11-21 13:42:06 +00:00
"bstr 0.2.17",
"unicode-segmentation",
]
[[package]]
name = "similar-asserts"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbf644ad016b75129f01a34a355dcb8d66a5bc803e417c7a77cc5d5ee9fa0f18"
dependencies = [
"console",
"similar",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "simplelog"
2022-05-09 18:02:45 +00:00
version = "0.12.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
2020-01-20 08:43:29 +00:00
dependencies = [
"log",
2022-11-14 12:56:25 +00:00
"termcolor",
2022-11-21 13:42:06 +00:00
"time 0.3.17",
2020-01-27 23:02:07 +00:00
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "slab"
2022-07-29 21:17:02 +00:00
version = "0.4.7"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:17:02 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "smallvec"
2022-11-21 13:42:06 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2020-05-24 17:00:36 +00:00
2020-04-30 19:09:24 +00:00
[[package]]
name = "snap"
2022-11-21 13:42:06 +00:00
version = "1.1.0"
2020-04-30 19:09:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
2020-04-30 19:09:24 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "socket2"
2022-11-21 13:42:06 +00:00
version = "0.4.7"
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 = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2022-02-18 16:48:49 +00:00
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"
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
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-05-09 18:02:45 +00:00
[[package]]
name = "strum"
2022-06-22 17:56:46 +00:00
version = "0.24.1"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
2022-05-09 18:02:45 +00:00
[[package]]
name = "strum_macros"
2022-08-21 11:45:45 +00:00
version = "0.24.3"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2022-05-09 18:02:45 +00:00
dependencies = [
2022-05-30 23:42:40 +00:00
"heck",
2022-05-09 18:02:45 +00:00
"proc-macro2",
"quote",
"rustversion",
"syn",
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "syn"
version = "1.0.105"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908"
2020-01-27 23:02:07 +00:00
dependencies = [
"proc-macro2",
"quote",
2022-05-30 23:42:40 +00:00
"unicode-ident",
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-11-21 13:42:06 +00:00
version = "0.4.0"
2021-10-22 05:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
2021-10-22 05:21:32 +00:00
[[package]]
name = "test-log"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38f0c854faeb68a048f0f2dc410c5ddae3bf83854ef0e4977d58306a5edef50e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-09-27 10:41:51 +00:00
[[package]]
name = "thiserror"
2022-11-21 13:42:06 +00:00
version = "1.0.37"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2020-09-27 10:41:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-11-21 13:42:06 +00:00
version = "1.0.37"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2020-09-27 10:41:51 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "time"
version = "0.1.45"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2020-01-20 08:43:29 +00:00
dependencies = [
"libc",
2022-06-22 17:56:46 +00:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "time"
2022-11-21 13:42:06 +00:00
version = "0.3.17"
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 = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
2022-02-18 16:48:49 +00:00
dependencies = [
2022-05-09 18:02:45 +00:00
"itoa",
2022-02-18 16:48:49 +00:00
"libc",
"num_threads",
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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-05-09 18:02:45 +00:00
[[package]]
name = "time-macros"
2022-11-21 13:42:06 +00:00
version = "0.2.6"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
dependencies = [
"time-core",
]
2022-05-09 18:02:45 +00:00
2021-05-23 13:47:34 +00:00
[[package]]
name = "tokio"
version = "1.23.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
2021-05-23 13:47:34 +00:00
dependencies = [
2022-07-18 20:17:37 +00:00
"autocfg",
2021-05-23 13:47:34 +00:00
"bytes",
"libc",
2021-05-23 13:47:34 +00:00
"memchr",
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",
"windows-sys",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-macros"
version = "1.8.2"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
2021-05-23 13:47:34 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-rustls"
2022-05-09 18:02:45 +00:00
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls",
"tokio",
"webpki",
]
[[package]]
name = "typenum"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]]
name = "ucd-trie"
2022-11-21 13:42:06 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2020-01-20 08:43:29 +00:00
[[package]]
2022-05-30 23:42:40 +00:00
name = "unicode-ident"
2022-11-21 13:42:06 +00:00
version = "1.0.5"
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 = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-segmentation"
2022-11-21 13:42:06 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-width"
2022-11-21 13:42:06 +00:00
version = "0.1.10"
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 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2020-01-20 08:43:29 +00:00
2022-07-29 21:18:46 +00:00
[[package]]
name = "unsafe-libyaml"
2022-11-21 13:42:06 +00:00
version = "0.2.4"
2022-07-29 21:18:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68"
2022-07-29 21:18:46 +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"
2022-06-22 17:56:46 +00:00
version = "0.10.0+wasi-snapshot-preview1"
2020-09-14 05:51:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
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-11-21 13:42:06 +00:00
version = "0.2.83"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
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-11-21 13:42:06 +00:00
version = "0.2.83"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2020-05-24 17:00:36 +00:00
dependencies = [
"bumpalo",
"log",
2022-07-29 21:17:02 +00:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2022-11-21 13:42:06 +00:00
version = "0.2.83"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
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-11-21 13:42:06 +00:00
version = "0.2.83"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
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-11-21 13:42:06 +00:00
version = "0.2.83"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2020-05-24 17:00:36 +00:00
[[package]]
name = "web-sys"
2022-11-21 13:42:06 +00:00
version = "0.3.60"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
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"
2022-11-21 13:42:06 +00:00
version = "1.2.3"
2021-01-29 15:11:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "d6631b6a2fd59b1841b622e8f1a7ad241ef0a46f2d580464ce8140ac94cbd571"
2021-01-29 15:11:42 +00:00
dependencies = [
2022-11-21 13:42:06 +00:00
"bumpalo",
2021-01-29 15:11:42 +00:00
"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"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
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 = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-02-18 16:48:49 +00:00
dependencies = [
2022-11-21 13:42:06 +00:00
"windows_aarch64_gnullvm",
2022-02-18 16:48:49 +00:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-21 13:42:06 +00:00
"windows_x86_64_gnullvm",
2022-02-18 16:48:49 +00:00
"windows_x86_64_msvc",
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_aarch64_msvc"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
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 = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_gnu"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
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 = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_msvc"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
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 = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
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 = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-11-21 13:42:06 +00:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
[[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"
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-11-21 13:42:06 +00:00
"time 0.3.17",
2020-12-19 19:36:51 +00:00
]