pueue/Cargo.lock

2264 lines
57 KiB
Plaintext
Raw Normal View History

2020-01-20 08:43:29 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-05-22 14:24:04 +00:00
[[package]]
name = "addr2line"
2023-08-24 17:10:31 +00:00
version = "0.21.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2021-05-22 14:24:04 +00:00
dependencies = [
"gimli",
]
2020-05-31 16:11:01 +00:00
[[package]]
2020-12-02 21:52:49 +00:00
name = "adler"
2021-03-12 12:15:59 +00:00
version = "1.0.2"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-12 12:15:59 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-05-31 16:11:01 +00:00
[[package]]
name = "aho-corasick"
2023-08-22 07:11:09 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a"
dependencies = [
"memchr",
]
2023-06-12 16:47:40 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-08-21 11:45:45 +00:00
[[package]]
name = "android_system_properties"
2022-11-21 13:42:06 +00:00
version = "0.1.5"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-21 11:45:45 +00:00
dependencies = [
"libc",
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "anstream"
2023-08-24 17:10:31 +00:00
version = "0.5.0"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
2023-03-23 23:12:59 +00:00
[[package]]
name = "anstyle"
2023-08-24 17:10:31 +00:00
version = "1.0.2"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea"
2023-05-26 15:08:55 +00:00
[[package]]
name = "anstyle-parse"
2023-07-04 08:14:26 +00:00
version = "0.2.1"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
2023-05-26 15:08:55 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
2023-08-24 17:10:31 +00:00
version = "2.1.0"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2023-03-23 23:12:59 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "anyhow"
2023-08-22 07:11:09 +00:00
version = "1.0.75"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
2021-06-15 19:50:01 +00:00
[[package]]
name = "assert_cmd"
2023-08-22 07:11:09 +00:00
version = "2.0.12"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
2021-06-15 19:50:01 +00:00
dependencies = [
2023-03-23 23:12:59 +00:00
"anstyle",
2023-08-22 07:11:09 +00:00
"bstr 1.6.0",
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"
2023-08-22 07:11:09 +00:00
version = "0.1.73"
2020-10-15 18:26:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
2020-10-15 18:26:32 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2020-10-15 18:26:32 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "autocfg"
2022-02-18 16:48:49 +00:00
version = "1.1.0"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-27 23:02:07 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "backtrace"
2023-08-24 17:10:31 +00:00
version = "0.3.69"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2021-05-22 14:24:04 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
2021-05-22 14:24:04 +00:00
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-01-25 13:27:05 +00:00
[[package]]
name = "base64"
2023-05-26 15:08:55 +00:00
version = "0.21.2"
2023-01-25 13:27:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2023-01-25 13:27:05 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "better-panic"
2022-01-17 02:01:39 +00:00
version = "0.3.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "6fa9e1d11a268684cbd90ed36370d7577afb6c62d912ddff5c15fc34343e5036"
2021-05-22 14:24:04 +00:00
dependencies = [
"backtrace",
"console",
]
[[package]]
name = "bindgen"
2023-08-22 07:11:09 +00:00
version = "0.66.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
dependencies = [
2023-08-22 07:11:09 +00:00
"bitflags 2.4.0",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "bitflags"
2021-10-22 05:21:32 +00:00
version = "1.3.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-01-20 08:43:29 +00:00
2023-07-04 08:14:26 +00:00
[[package]]
name = "bitflags"
2023-08-22 07:11:09 +00:00
version = "2.4.0"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2023-07-04 08:14:26 +00:00
[[package]]
name = "block-buffer"
2023-03-23 23:12:59 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "bstr"
2021-10-22 05:21:32 +00:00
version = "0.2.17"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
2021-06-15 19:50:01 +00:00
dependencies = [
"lazy_static",
"memchr",
2023-08-22 07:11:09 +00:00
"regex-automata 0.1.10",
2021-06-15 19:50:01 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "bstr"
2023-08-22 07:11:09 +00:00
version = "1.6.0"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05"
2022-11-21 13:42:06 +00:00
dependencies = [
"memchr",
2023-08-22 07:11:09 +00:00
"regex-automata 0.3.6",
2022-11-21 13:42:06 +00:00
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
2020-05-24 17:00:36 +00:00
name = "bumpalo"
2023-05-26 15:08:55 +00:00
version = "3.13.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
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"
2023-03-03 23:35:25 +00:00
version = "1.4.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2021-05-23 13:47:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "cc"
2023-08-22 07:11:09 +00:00
version = "1.0.83"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
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"
2023-06-12 16:47:40 +00:00
version = "0.4.26"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-06-12 16:47:40 +00:00
"android-tzdata",
2022-08-21 11:45:45 +00:00
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"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"
2023-05-26 15:08:55 +00:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
dependencies = [
"glob",
"libc",
"libloading",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "clap"
2023-08-24 17:10:31 +00:00
version = "4.4.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "1d5f1946157a96594eb2d2c10eb7ad9a2b27518cb3000209dec700c35df9197d"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"clap_builder",
2020-10-30 17:33:50 +00:00
"clap_derive",
2023-05-26 15:08:55 +00:00
"once_cell",
]
[[package]]
name = "clap_builder"
2023-08-24 17:10:31 +00:00
version = "4.4.0"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "78116e32a042dd73c2901f0dc30790d20ff3447f3e3472fad359e8c3d282bcd6"
2023-05-26 15:08:55 +00:00
dependencies = [
"anstream",
"anstyle",
2022-05-09 18:02:45 +00:00
"clap_lex",
2022-06-22 17:56:46 +00:00
"once_cell",
"strsim",
2022-01-02 16:59:21 +00:00
]
[[package]]
name = "clap_complete"
2023-08-24 17:10:31 +00:00
version = "4.4.0"
2022-01-02 16:59:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "586a385f7ef2f8b4d86bddaa0c094794e7ccbfe5ffef1f434fe928143fc783a5"
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"
2023-08-24 17:10:31 +00:00
version = "4.4.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a"
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-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2020-10-30 17:33:50 +00:00
]
2022-05-09 18:02:45 +00:00
[[package]]
name = "clap_lex"
2023-08-24 17:10:31 +00:00
version = "0.5.1"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
2022-05-09 18:02:45 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
2023-05-26 15:08:55 +00:00
name = "colorchoice"
version = "1.0.0"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-11-21 13:42:06 +00:00
[[package]]
name = "comfy-table"
2023-07-04 08:14:26 +00:00
version = "7.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b"
dependencies = [
"crossterm",
2023-07-04 08:14:26 +00:00
"strum 0.24.1",
"strum_macros 0.24.3",
2021-08-10 10:40:48 +00:00
"unicode-width",
]
[[package]]
name = "command-group"
2023-03-03 23:35:25 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "5080df6b0f0ecb76cab30808f00d937ba725cebe266a3da8cd89dff92f2a9916"
dependencies = [
"nix",
"winapi",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "console"
2023-05-26 15:08:55 +00:00
version = "0.15.7"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
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",
2023-05-26 15:08:55 +00:00
"windows-sys 0.45.0",
2021-05-22 14:24:04 +00:00
]
2022-08-21 11:45:45 +00:00
[[package]]
name = "core-foundation-sys"
2023-05-26 15:08:55 +00:00
version = "0.8.4"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-08-21 11:45:45 +00:00
2022-07-29 21:17:02 +00:00
[[package]]
name = "cpufeatures"
2023-08-22 07:11:09 +00:00
version = "0.2.9"
2022-07-29 21:17:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2022-07-29 21:17:02 +00:00
dependencies = [
"libc",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "crossterm"
2023-05-26 15:08:55 +00:00
version = "0.26.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
"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"
2023-07-04 08:14:26 +00:00
version = "0.9.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
2022-07-29 21:17:02 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2020-10-15 22:46:19 +00:00
[[package]]
name = "ctrlc"
2023-06-12 16:47:40 +00:00
version = "3.4.0"
2020-10-15 22:46:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e"
2020-10-15 22:46:19 +00:00
dependencies = [
"nix",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
2022-11-21 13:42:06 +00:00
]
2023-08-22 07:11:09 +00:00
[[package]]
name = "deranged"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
2021-05-22 14:24:04 +00:00
[[package]]
name = "diff"
2022-07-18 20:17:37 +00:00
version = "0.1.13"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2021-05-22 14:24:04 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
2021-07-08 14:58:18 +00:00
name = "difflib"
version = "0.4.0"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-08 14:58:18 +00:00
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2021-06-15 19:50:01 +00:00
[[package]]
name = "digest"
2023-05-26 15:08:55 +00:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
2022-07-29 21:17:02 +00:00
"block-buffer",
"crypto-common",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "dirs"
2023-05-26 15:08:55 +00:00
version = "5.0.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"dirs-sys",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "dirs-sys"
2023-05-26 15:08:55 +00:00
version = "0.4.1"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
2023-03-23 23:12:59 +00:00
dependencies = [
"libc",
2023-05-26 15:08:55 +00:00
"option-ext",
2023-03-23 23:12:59 +00:00
"redox_users",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
2023-03-23 23:12:59 +00:00
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2021-07-08 14:58:18 +00:00
[[package]]
name = "either"
2023-08-22 07:11:09 +00:00
version = "1.9.0"
2021-07-08 14:58:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
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",
]
2023-07-04 08:14:26 +00:00
[[package]]
name = "equivalent"
2023-08-22 07:11:09 +00:00
version = "1.0.1"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-07-04 08:14:26 +00:00
2022-07-29 21:27:21 +00:00
[[package]]
name = "errno"
2023-08-22 07:11:09 +00:00
version = "0.3.2"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
2023-05-26 15:08:55 +00:00
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
2022-07-29 21:27:21 +00:00
[[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"
2023-08-22 07:11:09 +00:00
version = "2.0.0"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
2022-01-17 02:01:39 +00:00
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-executor"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-macro"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2022-06-22 17:56:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2022-06-22 17:56:46 +00:00
]
[[package]]
name = "futures-sink"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-task"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
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"
2023-05-26 15:08:55 +00:00
version = "0.3.28"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-05-26 15:08:55 +00:00
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
2022-07-29 21:17:02 +00:00
"version_check",
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "getrandom"
2023-06-12 16:47:40 +00:00
version = "0.2.10"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
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"
2023-08-24 17:10:31 +00:00
version = "0.28.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2021-05-22 14:24:04 +00:00
[[package]]
name = "glob"
2023-01-25 13:27:05 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-25 13:27:05 +00:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2021-05-11 18:53:26 +00:00
[[package]]
name = "half"
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"
2023-05-26 15:08:55 +00:00
version = "4.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "83c3372087601b532857d332f5957cbae686da52bb7810bf038c3e3c3cc2fa0d"
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
2022-05-30 23:42:40 +00:00
"thiserror",
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "hashbrown"
2023-07-04 08:14:26 +00:00
version = "0.14.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2020-10-30 17:33:50 +00:00
2022-01-17 02:01:39 +00:00
[[package]]
name = "heck"
2023-03-03 23:35:25 +00:00
version = "0.4.1"
2022-01-17 02:01:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-01-17 02:01:39 +00:00
2023-03-03 23:35:25 +00:00
[[package]]
name = "hermit-abi"
2023-08-22 07:11:09 +00:00
version = "0.3.2"
2023-03-03 23:35:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2023-03-03 23:35:25 +00:00
2020-05-31 16:11:01 +00:00
[[package]]
name = "hex"
2021-03-12 12:15:59 +00:00
version = "0.4.3"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-12 12:15:59 +00:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-05-31 16:11:01 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2022-08-21 11:45:45 +00:00
[[package]]
name = "iana-time-zone"
2023-06-12 16:47:40 +00:00
version = "0.1.57"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
2022-08-21 11:45:45 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-11-21 13:42:06 +00:00
"iana-time-zone-haiku",
2022-08-21 11:45:45 +00:00
"js-sys",
"wasm-bindgen",
2023-05-26 15:08:55 +00:00
"windows",
2022-08-21 11:45:45 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "iana-time-zone-haiku"
2023-05-26 15:08:55 +00:00
version = "0.1.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-11-21 13:42:06 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"cc",
2022-11-21 13:42:06 +00:00
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "indexmap"
2023-07-04 08:14:26 +00:00
version = "2.0.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
2020-10-30 17:33:50 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"equivalent",
2020-10-30 17:33:50 +00:00
"hashbrown",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "io-lifetimes"
2023-05-26 15:08:55 +00:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
2023-07-04 08:14:26 +00:00
"hermit-abi",
"libc",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
]
[[package]]
name = "is-terminal"
2023-08-22 07:11:09 +00:00
version = "0.4.9"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
2023-07-04 08:14:26 +00:00
"hermit-abi",
2023-08-22 07:11:09 +00:00
"rustix 0.38.8",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
]
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"
2023-08-22 07:11:09 +00:00
version = "1.0.9"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2020-01-20 08:43:29 +00:00
2020-05-24 17:00:36 +00:00
[[package]]
name = "js-sys"
2023-07-04 08:14:26 +00:00
version = "0.3.64"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
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"
2023-07-04 08:14:26 +00:00
version = "0.2.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[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"
2023-08-22 07:11:09 +00:00
version = "0.14.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "0fba61dbe003b79fe1af52ff15a489e50b9e66b36c79f945fbcbcf02e895f26d"
dependencies = [
"bindgen",
2023-08-22 07:11:09 +00:00
"errno",
"libc",
]
2020-01-20 08:43:29 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
2023-05-26 15:08:55 +00:00
name = "linux-raw-sys"
version = "0.1.4"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-11-21 13:42:06 +00:00
2022-07-29 21:27:21 +00:00
[[package]]
name = "linux-raw-sys"
2023-08-22 07:11:09 +00:00
version = "0.4.5"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
2023-07-04 08:14:26 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "lock_api"
2023-06-12 16:47:40 +00:00
version = "0.4.10"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
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"
2023-08-22 07:11:09 +00:00
version = "0.4.20"
2020-07-05 17:24:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
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"
2023-07-04 08:14:26 +00:00
version = "0.7.1"
2020-12-02 21:52:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
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"
2023-06-12 16:47:40 +00:00
version = "0.8.8"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
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",
2023-06-12 16:47:40 +00:00
"windows-sys 0.48.0",
2020-01-20 08:43:29 +00:00
]
2021-06-04 18:02:55 +00:00
[[package]]
name = "nix"
2023-01-25 13:27:05 +00:00
version = "0.26.2"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-25 13:27:05 +00:00
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
2022-08-21 11:45:45 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
2022-08-21 11:45:45 +00:00
"cfg-if",
"libc",
"static_assertions",
2022-08-21 11:45:45 +00:00
]
[[package]]
name = "nom"
2023-01-25 13:27:05 +00:00
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-25 13:27:05 +00:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "num-traits"
2023-08-22 07:11:09 +00:00
version = "0.2.16"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
2020-01-20 08:43:29 +00:00
dependencies = [
"autocfg",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "num_cpus"
2023-07-04 08:14:26 +00:00
version = "1.16.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2020-01-20 08:43:29 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"hermit-abi",
"libc",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "num_threads"
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"
2023-08-24 17:10:31 +00:00
version = "0.32.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
2021-06-04 18:02:55 +00:00
dependencies = [
"memchr",
]
2021-05-22 14:24:04 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "once_cell"
2023-06-12 16:47:40 +00:00
version = "1.18.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2020-01-20 08:43:29 +00:00
2020-10-30 17:33:50 +00:00
[[package]]
2023-05-26 15:08:55 +00:00
name = "option-ext"
version = "0.2.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2020-10-30 17:33:50 +00:00
[[package]]
name = "parking_lot"
2022-06-22 17:56:46 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-06-12 16:47:40 +00:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
dependencies = [
"cfg-if",
"libc",
2023-06-12 16:47:40 +00:00
"redox_syscall 0.3.5",
"smallvec",
2023-08-22 07:11:09 +00:00
"windows-targets 0.48.5",
]
[[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"
2023-07-04 08:14:26 +00:00
version = "2.0.1"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "6b13fe415cdf3c8e44518e18a7c95a13431d9bdf6d15367d82b23c377fdd441a"
2020-12-19 19:36:51 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"base64",
"serde",
2020-12-19 19:36:51 +00:00
]
[[package]]
name = "pest"
2023-08-22 07:11:09 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a"
dependencies = [
2022-07-29 21:17:02 +00:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-08-22 07:11:09 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-08-22 07:11:09 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
]
[[package]]
name = "pest_meta"
2023-08-22 07:11:09 +00:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48"
dependencies = [
2022-07-29 21:17:02 +00:00
"once_cell",
"pest",
2023-01-25 13:27:05 +00:00
"sha2",
2020-05-13 20:20:27 +00:00
]
2020-12-12 22:11:27 +00:00
[[package]]
name = "pin-project-lite"
2023-08-22 07:11:09 +00:00
version = "0.2.12"
2020-12-12 22:11:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05"
2020-12-12 22:11:27 +00:00
2022-06-22 17:56:46 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "portpicker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
dependencies = [
"rand",
]
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"
2023-05-26 15:08:55 +00:00
version = "3.0.3"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9"
2021-06-15 19:50:01 +00:00
dependencies = [
2023-03-23 23:12:59 +00:00
"anstyle",
2021-07-08 14:58:18 +00:00
"difflib",
"itertools",
2021-06-15 19:50:01 +00:00
"predicates-core",
]
[[package]]
name = "predicates-core"
2023-03-23 23:12:59 +00:00
version = "1.0.6"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates-tree"
2023-03-23 23:12:59 +00:00
version = "1.0.9"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
2021-06-15 19:50:01 +00:00
dependencies = [
"predicates-core",
2021-10-22 05:21:32 +00:00
"termtree",
2021-06-15 19:50:01 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "pretty_assertions"
2023-08-22 07:11:09 +00:00
version = "1.4.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
2021-05-22 14:24:04 +00:00
dependencies = [
"diff",
2022-11-21 13:42:06 +00:00
"yansi",
2021-05-22 14:24:04 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "proc-macro2"
2023-08-22 07:11:09 +00:00
version = "1.0.66"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
2020-01-20 08:43:29 +00:00
dependencies = [
2022-05-30 23:42:40 +00:00
"unicode-ident",
2020-01-20 08:43:29 +00:00
]
2020-05-31 16:11:01 +00:00
[[package]]
name = "procfs"
2023-03-03 23:35:25 +00:00
version = "0.15.1"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "943ca7f9f29bab5844ecd8fdb3992c5969b6622bb9609b9502fef9b4310e3f1f"
2020-05-31 16:11:01 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
"byteorder",
"hex",
"lazy_static",
2023-08-22 07:11:09 +00:00
"rustix 0.36.15",
2020-05-31 16:11:01 +00:00
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "pueue"
2023-06-13 01:05:10 +00:00
version = "3.2.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",
"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",
2023-07-04 08:14:26 +00:00
"strum 0.25.0",
2023-08-22 07:11:09 +00:00
"strum_macros 0.25.2",
2021-01-17 17:17:44 +00:00
"tempfile",
"test-log",
2021-05-23 13:47:34 +00:00
"tokio",
2021-01-29 15:11:42 +00:00
"whoami",
2021-01-17 17:17:44 +00:00
]
[[package]]
name = "pueue-lib"
2023-06-13 00:22:50 +00:00
version = "0.23.0"
dependencies = [
"anyhow",
"async-trait",
"better-panic",
"byteorder",
"chrono",
"command-group",
2023-05-26 15:08:55 +00:00
"dirs",
"libproc",
"log",
"portpicker",
"pretty_assertions",
"procfs",
"rand",
"rcgen",
"rev_buf_reader",
"rustls",
"rustls-pemfile",
"serde",
2021-05-11 18:53:26 +00:00
"serde_cbor",
"serde_derive",
"serde_json",
"serde_yaml",
"shellexpand",
"snap",
2023-07-04 08:14:26 +00:00
"strum 0.25.0",
2023-08-22 07:11:09 +00:00
"strum_macros 0.25.2",
"tempfile",
"thiserror",
"tokio",
"tokio-rustls",
2021-02-01 18:58:24 +00:00
"whoami",
"winapi",
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "quote"
2023-08-22 07:11:09 +00:00
version = "1.0.33"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2020-01-27 23:02:07 +00:00
dependencies = [
"proc-macro2",
2020-02-05 21:18:23 +00:00
]
2020-12-22 20:30:04 +00:00
[[package]]
name = "rand"
2022-02-18 16:48:49 +00:00
version = "0.8.5"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2020-12-22 20:30:04 +00:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
2020-12-22 20:30:04 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-13 13:14:21 +00:00
version = "0.3.1"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-13 13:14:21 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2020-12-22 20:30:04 +00:00
dependencies = [
"ppv-lite86",
"rand_core",
2020-12-22 20:30:04 +00:00
]
[[package]]
name = "rand_core"
2022-11-21 13:42:06 +00:00
version = "0.6.4"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2020-12-22 20:30:04 +00:00
dependencies = [
2021-05-11 18:53:26 +00:00
"getrandom",
2020-01-20 08:43:29 +00:00
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "rcgen"
2023-07-04 08:14:26 +00:00
version = "0.11.1"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "4954fbc00dcd4d8282c987710e50ba513d351400dbdd00e803a05172a90d8976"
2020-12-19 19:36:51 +00:00
dependencies = [
"pem",
"ring",
2023-08-24 17:10:31 +00:00
"time 0.3.27",
2020-12-19 19:36:51 +00:00
"yasna",
]
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 = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
2021-01-15 00:39:07 +00:00
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
2023-05-26 15:08:55 +00:00
]
[[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",
2023-05-26 15:08:55 +00:00
"redox_syscall 0.2.16",
2022-03-24 22:03:41 +00:00
"thiserror",
]
[[package]]
name = "regex"
2023-08-22 07:11:09 +00:00
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a"
dependencies = [
"aho-corasick",
"memchr",
2023-08-22 07:11:09 +00:00
"regex-automata 0.3.6",
"regex-syntax",
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2023-08-22 07:11:09 +00:00
[[package]]
name = "regex-automata"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-08-22 07:11:09 +00:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
[[package]]
name = "relative-path"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c707298afce11da2efef2f600116fa93ffa7a032b5d7b628aa17711ec81383ca"
[[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"
2023-08-22 07:11:09 +00:00
version = "0.18.2"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
2023-08-22 07:11:09 +00:00
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
dependencies = [
"cfg-if",
2023-08-22 07:11:09 +00:00
"glob",
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"regex",
"relative-path",
"rustc_version",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
"unicode-ident",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-demangle"
2023-05-26 15:08:55 +00:00
version = "0.1.23"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc_version"
2021-08-09 13:38:37 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-09 13:38:37 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "rustix"
2023-08-22 07:11:09 +00:00
version = "0.36.15"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941"
2022-07-29 21:27:21 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"bitflags 1.3.2",
2023-08-22 07:11:09 +00:00
"errno",
2022-07-29 21:27:21 +00:00
"io-lifetimes",
"libc",
2023-05-26 15:08:55 +00:00
"linux-raw-sys 0.1.4",
2023-03-03 23:35:25 +00:00
"windows-sys 0.45.0",
2022-07-29 21:27:21 +00:00
]
2023-05-26 15:08:55 +00:00
[[package]]
name = "rustix"
2023-08-22 07:11:09 +00:00
version = "0.38.8"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f"
2023-07-04 08:14:26 +00:00
dependencies = [
2023-08-22 07:11:09 +00:00
"bitflags 2.4.0",
"errno",
2023-07-04 08:14:26 +00:00
"libc",
2023-08-22 07:11:09 +00:00
"linux-raw-sys 0.4.5",
2023-07-04 08:14:26 +00:00
"windows-sys 0.48.0",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "rustls"
2023-08-22 07:11:09 +00:00
version = "0.21.6"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb"
2020-10-30 23:02:12 +00:00
dependencies = [
"ring",
2023-05-26 15:08:55 +00:00
"rustls-webpki",
2020-10-30 23:02:12 +00:00
"sct",
]
[[package]]
name = "rustls-pemfile"
2023-07-04 08:14:26 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
2023-07-04 08:14:26 +00:00
"base64",
2023-05-26 15:08:55 +00:00
]
[[package]]
name = "rustls-webpki"
2023-08-24 17:10:31 +00:00
version = "0.101.4"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d"
2023-05-26 15:08:55 +00:00
dependencies = [
"ring",
"untrusted",
]
2022-01-02 18:04:34 +00:00
[[package]]
name = "rustversion"
2023-08-22 07:11:09 +00:00
version = "1.0.14"
2022-01-02 18:04:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2022-01-02 18:04:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "ryu"
2023-08-22 07:11:09 +00:00
version = "1.0.15"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2020-01-27 23:02:07 +00:00
2020-03-01 07:38:15 +00:00
[[package]]
name = "scanlex"
2020-12-02 21:52:49 +00:00
version = "0.1.4"
2020-03-01 07:38:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 21:52:49 +00:00
checksum = "088c5d71572124929ea7549a8ce98e1a6fd33d0a38367b09027b382e67c033db"
2020-03-01 07:38:15 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "scopeguard"
2023-08-22 07:11:09 +00:00
version = "1.2.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2020-05-24 17:00:36 +00:00
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"
2023-08-22 07:11:09 +00:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde"
2023-08-24 17:10:31 +00:00
version = "1.0.186"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1"
dependencies = [
"serde_derive",
]
2020-01-20 08:43:29 +00:00
2021-05-11 18:53:26 +00:00
[[package]]
name = "serde_cbor"
2021-08-18 23:46:38 +00:00
version = "0.11.2"
2021-05-11 18:53:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-18 23:46:38 +00:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
2021-05-11 18:53:26 +00:00
dependencies = [
"half",
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde_derive"
2023-08-24 17:10:31 +00:00
version = "1.0.186"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_json"
2023-08-22 07:11:09 +00:00
version = "1.0.105"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
2020-01-20 08:43:29 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_yaml"
2023-08-22 07:11:09 +00:00
version = "0.9.25"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574"
2020-01-20 08:43:29 +00:00
dependencies = [
2021-10-22 05:21:32 +00:00
"indexmap",
2022-07-29 21:18:46 +00:00
"itoa",
2022-01-02 18:04:34 +00:00
"ryu",
"serde",
2022-07-29 21:18:46 +00:00
"unsafe-libyaml",
2020-01-20 08:43:29 +00:00
]
[[package]]
2023-01-25 13:27:05 +00:00
name = "sha2"
2023-07-04 08:14:26 +00:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
dependencies = [
2022-07-29 21:17:02 +00:00
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "shell-escape"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
[[package]]
name = "shellexpand"
2023-05-26 15:08:55 +00:00
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
dependencies = [
2023-05-26 15:08:55 +00:00
"dirs",
]
[[package]]
name = "shlex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "signal-hook"
2023-08-22 07:11:09 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
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"
2023-03-03 23:35:25 +00:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
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"
2023-08-22 07:11:09 +00:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "e041bb827d1bfca18f213411d51b665309f1afb37a04a5d1464530e13779fc0f"
dependencies = [
"console",
"similar",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "simplelog"
2023-03-03 23:35:25 +00:00
version = "0.12.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369"
2020-01-20 08:43:29 +00:00
dependencies = [
"log",
2022-11-14 12:56:25 +00:00
"termcolor",
2023-08-24 17:10:31 +00:00
"time 0.3.27",
2020-01-27 23:02:07 +00:00
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "slab"
2023-08-24 17:10:31 +00:00
version = "0.4.9"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-07-29 21:17:02 +00:00
dependencies = [
"autocfg",
]
2022-06-22 17:56:46 +00:00
[[package]]
name = "smallvec"
2023-08-22 07:11:09 +00:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
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"
2023-08-22 07:11:09 +00:00
version = "0.5.3"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
2022-02-18 16:48:49 +00:00
dependencies = [
"libc",
2023-08-22 07:11:09 +00:00
"windows-sys 0.48.0",
2022-02-18 16:48:49 +00:00
]
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
2023-07-04 08:14:26 +00:00
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
2022-05-09 18:02:45 +00:00
[[package]]
name = "strum_macros"
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",
2023-03-23 23:12:59 +00:00
"syn 1.0.109",
2022-05-09 18:02:45 +00:00
]
2023-07-04 08:14:26 +00:00
[[package]]
name = "strum_macros"
2023-08-22 07:11:09 +00:00
version = "0.25.2"
2023-07-04 08:14:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
2023-07-04 08:14:26 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2023-07-04 08:14:26 +00:00
]
2020-01-27 23:02:07 +00:00
[[package]]
name = "syn"
2023-03-03 23:35:25 +00:00
version = "1.0.109"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
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
]
2023-03-23 23:12:59 +00:00
[[package]]
name = "syn"
2023-08-22 07:11:09 +00:00
version = "2.0.29"
2023-03-23 23:12:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
2023-03-23 23:12:59 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "tempfile"
2023-08-22 07:11:09 +00:00
version = "3.8.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
2020-01-20 08:43:29 +00:00
dependencies = [
"cfg-if",
2022-01-17 02:01:39 +00:00
"fastrand",
2023-05-26 15:08:55 +00:00
"redox_syscall 0.3.5",
2023-08-22 07:11:09 +00:00
"rustix 0.38.8",
2023-06-12 16:47:40 +00:00
"windows-sys 0.48.0",
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-10-22 05:21:32 +00:00
[[package]]
name = "termtree"
2023-03-23 23:12:59 +00:00
version = "0.4.1"
2021-10-22 05:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
2021-10-22 05:21:32 +00:00
[[package]]
name = "test-log"
2023-07-04 08:14:26 +00:00
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "d9601d162c1d77e62c1ea0bc8116cd1caf143ce3af947536c3c9052a1677fe0c"
dependencies = [
"proc-macro2",
"quote",
2023-03-23 23:12:59 +00:00
"syn 1.0.109",
]
2020-09-27 10:41:51 +00:00
[[package]]
name = "thiserror"
2023-08-22 07:11:09 +00:00
version = "1.0.47"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f"
2020-09-27 10:41:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-08-22 07:11:09 +00:00
version = "1.0.47"
2020-09-27 10:41:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b"
2020-09-27 10:41:51 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2020-09-27 10:41:51 +00:00
]
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"
2023-08-24 17:10:31 +00:00
version = "0.3.27"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "0bb39ee79a6d8de55f48f2293a830e040392f1c5f16e336bdd1788cd0aadce07"
2022-02-18 16:48:49 +00:00
dependencies = [
2023-08-22 07:11:09 +00:00
"deranged",
2022-05-09 18:02:45 +00:00
"itoa",
2022-02-18 16:48:49 +00:00
"libc",
"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"
2023-05-26 15:08:55 +00:00
version = "0.1.1"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-11-21 13:42:06 +00:00
2022-05-09 18:02:45 +00:00
[[package]]
name = "time-macros"
2023-08-24 17:10:31 +00:00
version = "0.2.13"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-24 17:10:31 +00:00
checksum = "733d258752e9303d392b94b75230d07b0b9c489350c69b851fc6c065fde3e8f9"
2022-11-21 13:42:06 +00:00
dependencies = [
"time-core",
]
2022-05-09 18:02:45 +00:00
2021-05-23 13:47:34 +00:00
[[package]]
name = "tokio"
2023-08-22 07:11:09 +00:00
version = "1.32.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
2021-05-23 13:47:34 +00:00
dependencies = [
2023-07-04 08:14:26 +00:00
"backtrace",
2021-05-23 13:47:34 +00:00
"bytes",
"libc",
2022-05-09 18:02:45 +00:00
"mio",
2021-05-23 13:47:34 +00:00
"num_cpus",
"pin-project-lite",
2022-02-18 16:48:49 +00:00
"socket2",
2021-05-23 13:47:34 +00:00
"tokio-macros",
2023-05-26 15:08:55 +00:00
"windows-sys 0.48.0",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-macros"
2023-05-26 15:08:55 +00:00
version = "2.1.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2021-05-23 13:47:34 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-rustls"
2023-06-12 16:47:40 +00:00
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 16:47:40 +00:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
"rustls",
"tokio",
]
[[package]]
name = "typenum"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]]
name = "ucd-trie"
2023-08-22 07:11:09 +00:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
2020-01-20 08:43:29 +00:00
[[package]]
2022-05-30 23:42:40 +00:00
name = "unicode-ident"
2023-08-22 07:11:09 +00:00
version = "1.0.11"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-segmentation"
2023-03-03 23:35:25 +00:00
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-03 23:35:25 +00:00
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
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"
2023-08-22 07:11:09 +00:00
version = "0.2.9"
2022-07-29 21:18:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa"
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"
2023-05-26 15:08:55 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2020-02-02 11:59:44 +00:00
[[package]]
name = "version_check"
2022-01-02 18:04:34 +00:00
version = "0.9.4"
2020-02-02 11:59:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-02-02 11:59:44 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
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"
2023-07-04 08:14:26 +00:00
version = "0.2.87"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
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"
2023-07-04 08:14:26 +00:00
version = "0.2.87"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2020-05-24 17:00:36 +00:00
dependencies = [
"bumpalo",
"log",
2022-07-29 21:17:02 +00:00
"once_cell",
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2023-07-04 08:14:26 +00:00
version = "0.2.87"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
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"
2023-07-04 08:14:26 +00:00
version = "0.2.87"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2020-05-24 17:00:36 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-22 07:11:09 +00:00
"syn 2.0.29",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-05-24 17:00:36 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2023-07-04 08:14:26 +00:00
version = "0.2.87"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2020-05-24 17:00:36 +00:00
[[package]]
name = "web-sys"
2023-07-04 08:14:26 +00:00
version = "0.3.64"
2020-05-24 17:00:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2020-05-24 17:00:36 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
2020-05-24 17:00:36 +00:00
]
2021-01-29 15:11:42 +00:00
[[package]]
name = "whoami"
2023-07-04 08:14:26 +00:00
version = "1.4.1"
2021-01-29 15:11:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 08:14:26 +00:00
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
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]]
2023-05-26 15:08:55 +00:00
name = "windows"
version = "0.48.0"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2022-02-18 16:48:49 +00:00
dependencies = [
2023-08-22 07:11:09 +00:00
"windows-targets 0.48.5",
2022-02-18 16:48:49 +00:00
]
2023-03-03 23:35:25 +00:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-05-26 15:08:55 +00:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-22 07:11:09 +00:00
"windows-targets 0.48.5",
2023-03-03 23:35:25 +00:00
]
[[package]]
name = "windows-targets"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2023-03-03 23:35:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-03-03 23:35:25 +00:00
dependencies = [
2023-05-26 15:08:55 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-05-26 15:08:55 +00:00
dependencies = [
2023-08-22 07:11:09 +00:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2023-03-03 23:35:25 +00:00
]
2022-11-21 13:42:06 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-21 13:42:06 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-05-26 15:08:55 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-02-18 16:48:49 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-05-26 15:08:55 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_gnu"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-02-18 16:48:49 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_i686_gnu"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-05-26 15:08:55 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_msvc"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-02-18 16:48:49 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_i686_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-05-26 15:08:55 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-21 13:42:06 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-05-26 15:08:55 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-02-18 16:48:49 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-05-26 15:08:55 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-23 23:12:59 +00:00
version = "0.42.2"
2022-11-21 13:42:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 23:12:59 +00:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-11-21 13:42:06 +00:00
2023-05-26 15:08:55 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-22 07:11:09 +00:00
version = "0.48.5"
2023-05-26 15:08:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 07:11:09 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-05-26 15:08:55 +00:00
2022-11-21 13:42:06 +00:00
[[package]]
name = "yansi"
version = "0.5.1"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 13:42:06 +00:00
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2022-02-18 16:48:49 +00:00
2020-12-19 19:36:51 +00:00
[[package]]
name = "yasna"
2023-05-26 15:08:55 +00:00
version = "0.5.2"
2020-12-19 19:36:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-26 15:08:55 +00:00
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2020-12-19 19:36:51 +00:00
dependencies = [
2023-08-24 17:10:31 +00:00
"time 0.3.27",
2020-12-19 19:36:51 +00:00
]