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

2046 lines
50 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
2022-08-21 11:45:45 +00:00
[[package]]
name = "android_system_properties"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +00:00
version = "1.0.65"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
2021-06-15 19:50:01 +00:00
[[package]]
name = "assert_cmd"
2022-01-17 02:01:39 +00:00
version = "2.0.4"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e"
2021-06-15 19:50:01 +00:00
dependencies = [
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2020-10-15 18:26:32 +00:00
[[package]]
name = "async-trait"
2022-08-21 11:45:45 +00:00
version = "0.1.57"
2020-10-15 18:26:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2020-10-15 18:26:32 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2020-01-20 08:43:29 +00:00
dependencies = [
"hermit-abi",
"libc",
"winapi",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "autocfg"
2022-02-18 16:48:49 +00:00
version = "1.1.0"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-27 23:02:07 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "backtrace"
2022-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"
2020-12-02 21:52:49 +00:00
version = "0.13.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 21:52:49 +00:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-01-20 08:43:29 +00:00
2021-05-22 14:24:04 +00:00
[[package]]
name = "better-panic"
2022-01-17 02:01:39 +00:00
version = "0.3.0"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "6fa9e1d11a268684cbd90ed36370d7577afb6c62d912ddff5c15fc34343e5036"
2021-05-22 14:24:04 +00:00
dependencies = [
"backtrace",
"console",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "bitflags"
2021-10-22 05:21:32 +00:00
version = "1.3.2"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-01-20 08:43:29 +00:00
[[package]]
name = "block-buffer"
2022-10-12 19:18:41 +00:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +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",
]
2020-01-20 08:43:29 +00:00
[[package]]
2020-05-24 17:00:36 +00:00
name = "bumpalo"
2022-08-21 11:45:45 +00:00
version = "3.11.0"
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 = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
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-08-21 11:45:45 +00:00
version = "1.2.1"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2021-05-23 13:47:34 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "cc"
2022-02-18 16:48:49 +00:00
version = "1.0.73"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-18 16:48:49 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2020-01-20 08:43:29 +00:00
2020-10-27 14:48:57 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-01-20 08:43:29 +00:00
[[package]]
name = "chrono"
2022-08-21 11:45:45 +00:00
version = "0.4.22"
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 = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
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",
2022-06-22 17:56:46 +00:00
"time 0.1.44",
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
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "clap"
2022-10-12 19:18:41 +00:00
version = "3.2.22"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750"
2020-01-20 08:43:29 +00:00
dependencies = [
"atty",
"bitflags",
2020-10-30 17:33:50 +00:00
"clap_derive",
2022-05-09 18:02:45 +00:00
"clap_lex",
2020-10-30 17:33:50 +00:00
"indexmap",
2022-06-22 17:56:46 +00:00
"once_cell",
"strsim",
2020-10-30 17:33:50 +00:00
"termcolor",
"textwrap",
2022-01-02 16:59:21 +00:00
]
[[package]]
name = "clap_complete"
2022-10-12 19:18:41 +00:00
version = "3.2.5"
2022-01-02 16:59:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8"
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-10-12 19:18:41 +00:00
version = "3.2.18"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
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-07-18 20:17:37 +00:00
version = "0.2.4"
2022-05-09 18:02:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
2022-05-09 18:02:45 +00:00
dependencies = [
"os_str_bytes",
]
2022-10-12 19:18:41 +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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85914173c2f558d61613bfbbf1911f14e630895087a7ed2fafc0f5319e1536e7"
dependencies = [
"crossterm",
2022-02-18 16:48:49 +00:00
"strum",
"strum_macros",
2021-08-10 10:40:48 +00:00
"unicode-width",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "console"
2022-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
2021-05-22 14:24:04 +00:00
dependencies = [
"encode_unicode",
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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"
2022-10-12 19:18:41 +00:00
version = "0.8.12"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
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-07-29 21:17:02 +00:00
version = "0.1.23"
2021-02-01 18:59:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:17:02 +00:00
checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
2021-02-01 18:59:46 +00:00
dependencies = [
"quote",
"syn",
]
2020-10-15 22:46:19 +00:00
[[package]]
name = "ctrlc"
2022-08-21 11:45:45 +00:00
version = "3.2.3"
2020-10-15 22:46:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173"
2020-10-15 22:46:19 +00:00
dependencies = [
2022-08-21 11:45:45 +00:00
"nix 0.25.0",
2020-10-15 22:46:19 +00:00
"winapi",
]
2022-10-12 19:18:41 +00:00
[[package]]
name = "cxx"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19f39818dcfc97d45b03953c1292efc4e80954e1583c4aa770bac1383e2310a4"
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e580d70777c116df50c390d1211993f62d40302881e54d4b79727acb83d0199"
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56a46460b88d1cec95112c8c363f0e2c39afdb237f60583b0b36343bf627ea9c"
[[package]]
name = "cxxbridge-macro"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747b608fecf06b0d72d440f27acc99288207324b793be2c17991839f3d4995ea"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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-10-12 19:18:41 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
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"
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-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
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-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-executor"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-macro"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
2022-06-22 17:56:46 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
2022-06-22 17:56:46 +00:00
[[package]]
name = "futures-task"
2022-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
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-10-12 19:18:41 +00:00
version = "0.3.24"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
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-06-22 17:56:46 +00:00
version = "0.2.7"
2020-12-22 20:30:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
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
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-10-12 19:18:41 +00:00
version = "4.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +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
]
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
2022-08-21 11:45:45 +00:00
[[package]]
name = "iana-time-zone"
2022-10-12 19:18:41 +00:00
version = "0.1.51"
2022-08-21 11:45:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "f5a6ef98976b22b3b7f2f3a806f858cb862044cfa66805aa3ad84cb3d3b785ed"
2022-08-21 11:45:45 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-10-12 19:18:41 +00:00
"iana-time-zone-haiku",
2022-08-21 11:45:45 +00:00
"js-sys",
"wasm-bindgen",
"winapi",
]
2022-10-12 19:18:41 +00:00
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fde6edd6cef363e9359ed3c98ba64590ba9eecba2293eb5a723ab32aee8926aa"
dependencies = [
"cxx",
"cxx-build",
]
2020-10-30 17:33:50 +00:00
[[package]]
name = "indexmap"
2022-06-22 17:56:46 +00:00
version = "1.9.1"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
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"
2022-08-21 11:45:45 +00:00
version = "0.7.3"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "1ea37f355c05dde75b84bba2d767906ad522e97cd9e2eef2be7a4ab7fb442c06"
2022-07-29 21:27:21 +00:00
2021-07-08 14:58:18 +00:00
[[package]]
name = "itertools"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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 = "libc"
2022-10-12 19:18:41 +00:00
version = "0.2.135"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
2020-01-20 08:43:29 +00:00
2022-07-29 21:27:21 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.0.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d"
2020-01-20 08:43:29 +00:00
[[package]]
name = "lock_api"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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
2021-06-04 18:02:55 +00:00
[[package]]
name = "memoffset"
2021-12-11 22:10:23 +00:00
version = "0.6.5"
2021-06-04 18:02:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-11 22:10:23 +00:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-06-04 18:02:55 +00:00
dependencies = [
"autocfg",
]
2020-12-02 21:52:49 +00:00
[[package]]
name = "miniz_oxide"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-06-22 17:56:46 +00:00
version = "0.8.4"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
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"
2022-07-18 20:17:37 +00:00
version = "0.24.2"
2021-06-04 18:02:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
2021-06-04 18:02:55 +00:00
dependencies = [
"bitflags",
"cfg-if",
"libc",
"memoffset",
]
2022-08-21 11:45:45 +00:00
[[package]]
name = "nix"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
dependencies = [
"autocfg",
"bitflags",
"cfg-if",
"libc",
2022-10-12 19:18:41 +00:00
"memoffset",
"pin-utils",
2022-08-21 11:45:45 +00:00
]
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-01-02 18:04:34 +00:00
version = "1.13.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2020-01-20 08:43:29 +00:00
dependencies = [
"hermit-abi",
"libc",
2020-01-20 08:43:29 +00:00
]
2022-02-18 16:48:49 +00:00
[[package]]
name = "num_threads"
2022-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-10-12 19:18:41 +00:00
version = "1.15.0"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2020-01-20 08:43:29 +00:00
2020-10-30 17:33:50 +00:00
[[package]]
name = "os_str_bytes"
2022-08-21 11:45:45 +00:00
version = "6.3.0"
2020-10-30 17:33:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
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"
2022-05-09 18:02:45 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 18:02:45 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if",
"libc",
2021-05-11 18:53:26 +00:00
"redox_syscall",
"smallvec",
2022-02-18 16:48:49 +00:00
"windows-sys",
]
2020-12-19 19:36:51 +00:00
[[package]]
name = "pem"
2022-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"
2022-10-12 19:18:41 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a"
dependencies = [
2022-07-29 21:17:02 +00:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2022-10-12 19:18:41 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "60b75706b9642ebcb34dab3bc7750f811609a0eb1dd8b88c2d15bf628c1c65b2"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2022-10-12 19:18:41 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "f4f9272122f5979a6511a749af9db9bfc810393f63119970d7085fed1c4ea0db"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
2022-10-12 19:18:41 +00:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "4c8717927f9b79515e565a64fe46c38b8cd0427e64c40680b14a7365ab09ac8d"
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-01-02 18:04:34 +00:00
version = "0.2.16"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2020-01-20 08:43:29 +00:00
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates"
2022-01-17 02:01:39 +00:00
version = "2.1.1"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
2021-06-15 19:50:01 +00:00
dependencies = [
2021-07-08 14:58:18 +00:00
"difflib",
"itertools",
2021-06-15 19:50:01 +00:00
"predicates-core",
]
[[package]]
name = "predicates-core"
2022-01-17 02:01:39 +00:00
version = "1.0.3"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb"
2021-06-15 19:50:01 +00:00
[[package]]
name = "predicates-tree"
2022-01-17 02:01:39 +00:00
version = "1.0.5"
2021-06-15 19:50:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032"
2021-06-15 19:50:01 +00:00
dependencies = [
"predicates-core",
2021-10-22 05:21:32 +00:00
"termtree",
2021-06-15 19:50:01 +00:00
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "pretty_assertions"
2022-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
2021-05-22 14:24:04 +00:00
dependencies = [
"ctor",
"diff",
"output_vt100",
2022-10-12 19:18:41 +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-10-12 19:18:41 +00:00
version = "1.0.46"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b"
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"
2022-07-29 21:27:21 +00:00
version = "0.14.1"
2020-05-31 16:11:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-29 21:27:21 +00:00
checksum = "2dfb6451c91904606a1abe93e83a8ec851f45827fa84273f256ade45dc095818"
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-07-21 12:38:57 +00:00
version = "2.1.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",
"crossbeam-channel",
"crossterm",
2020-10-15 22:46:19 +00:00
"ctrlc",
"handlebars",
"log",
2022-10-12 19:18:41 +00:00
"nix 0.25.0",
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",
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"
version = "0.21.0"
dependencies = [
"anyhow",
"async-trait",
"better-panic",
"byteorder",
"chrono",
"dirs",
"log",
2022-08-21 11:45:45 +00:00
"nix 0.24.2",
"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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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"
2022-07-18 20:17:37 +00:00
version = "0.9.3"
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 = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
2020-12-19 19:36:51 +00:00
dependencies = [
"pem",
"ring",
2022-10-12 19:18:41 +00:00
"time 0.3.15",
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",
]
2021-06-15 19:50:01 +00:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2020-01-20 08:43:29 +00:00
[[package]]
name = "remove_dir_all"
2020-07-05 17:24:59 +00:00
version = "0.5.3"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2020-01-20 08:43:29 +00:00
dependencies = [
"winapi",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "rev_buf_reader"
2022-01-31 08:55:07 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 08:55:07 +00:00
checksum = "8c0f2e47e00e29920959826e2e1784728a3780d1a784247be5257258cc75f910"
dependencies = [
"memchr",
]
2020-10-30 23:02:12 +00:00
[[package]]
name = "ring"
version = "0.16.20"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2020-10-30 23:02:12 +00:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
[[package]]
name = "rstest"
2022-07-18 20:17:37 +00:00
version = "0.15.0"
2022-06-22 17:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-18 20:17:37 +00:00
checksum = "e9c9dc66cc29792b663ffb5269be669f1613664e69ad56441fdb895c2347b930"
2022-06-22 17:56:46 +00:00
dependencies = [
"futures",
"futures-timer",
"rstest_macros",
"rustc_version",
]
[[package]]
name = "rstest_macros"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "5015e68a0685a95ade3eee617ff7101ab6a3fc689203101ca16ebc16f2b89c66"
dependencies = [
"cfg-if",
"proc-macro2",
"quote",
"rustc_version",
"syn",
]
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc-demangle"
2021-10-22 05:21:32 +00:00
version = "0.1.21"
2021-05-22 14:24:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 05:21:32 +00:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2021-05-22 14:24:04 +00:00
[[package]]
name = "rustc_version"
2021-08-09 13:38:37 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-09 13:38:37 +00:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2022-07-29 21:27:21 +00:00
[[package]]
name = "rustix"
2022-10-12 19:18:41 +00:00
version = "0.35.11"
2022-07-29 21:27:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "fbb2fda4666def1433b1b05431ab402e42a1084285477222b72d6c564c417cef"
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-05-30 23:42:40 +00:00
version = "0.20.6"
2020-10-30 23:02:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 23:42:40 +00:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2020-10-30 23:02:12 +00:00
dependencies = [
"log",
"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-10-12 19:18:41 +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-10-12 19:18:41 +00:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde"
2022-10-12 19:18:41 +00:00
version = "1.0.145"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
2020-01-20 08:43:29 +00:00
2021-05-11 18:53:26 +00:00
[[package]]
name = "serde_cbor"
2021-08-18 23:46:38 +00:00
version = "0.11.2"
2021-05-11 18:53:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-18 23:46:38 +00:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
2021-05-11 18:53:26 +00:00
dependencies = [
"half",
"serde",
]
2020-01-20 08:43:29 +00:00
[[package]]
name = "serde_derive"
2022-10-12 19:18:41 +00:00
version = "1.0.145"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
2020-01-20 08:43:29 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-01-20 08:43:29 +00:00
]
[[package]]
name = "serde_json"
2022-10-12 19:18:41 +00:00
version = "1.0.86"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
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-10-12 19:18:41 +00:00
version = "0.9.13"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "8613d593412a0deb7bbd8de9d908efff5a0cb9ccd8f62c641e7b2ed2f57291d1"
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-10-12 19:18:41 +00:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +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"
2022-08-21 11:45:45 +00:00
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-21 11:45:45 +00:00
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
dependencies = [
2022-08-21 11:45:45 +00:00
"dirs",
]
[[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"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62ac7f900db32bf3fd12e0117dd3dc4da74bc52ebaac97f39668446d89694803"
dependencies = [
"bstr",
"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-10-12 19:18:41 +00:00
"time 0.3.15",
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-10-12 19:18:41 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2020-05-24 17:00:36 +00:00
2020-04-30 19:09:24 +00:00
[[package]]
name = "snap"
2021-05-11 18:57:09 +00:00
version = "1.0.5"
2020-04-30 19:09:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-11 18:57:09 +00:00
checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451"
2020-04-30 19:09:24 +00:00
2022-02-18 16:48:49 +00:00
[[package]]
name = "socket2"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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"
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"
2022-10-12 19:18:41 +00:00
version = "1.0.102"
2020-01-27 23:02:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1"
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-01-17 02:01:39 +00:00
version = "0.2.4"
2021-10-22 05:21:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-17 02:01:39 +00:00
checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
2021-10-22 05:21:32 +00:00
2020-01-20 08:43:29 +00:00
[[package]]
name = "textwrap"
2022-10-12 19:18:41 +00:00
version = "0.15.1"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
2020-01-20 08:43:29 +00:00
2020-09-27 10:41:51 +00:00
[[package]]
name = "thiserror"
2022-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2020-09-27 10:41:51 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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"
2022-06-22 17:56:46 +00:00
version = "0.1.44"
2020-01-20 08:43:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
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-10-12 19:18:41 +00:00
version = "0.3.15"
2022-02-18 16:48:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
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-05-09 18:02:45 +00:00
"time-macros",
2022-02-18 16:48:49 +00:00
]
2022-05-09 18:02:45 +00:00
[[package]]
name = "time-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2021-05-23 13:47:34 +00:00
[[package]]
name = "tokio"
2022-10-12 19:18:41 +00:00
version = "1.21.2"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
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",
"winapi",
2021-05-23 13:47:34 +00:00
]
[[package]]
name = "tokio-macros"
2022-06-22 17:56:46 +00:00
version = "1.8.0"
2021-05-23 13:47:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-22 17:56:46 +00:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
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"
2022-01-02 18:04:34 +00:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-02 18:04:34 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "ucd-trie"
2022-10-12 19:18:41 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-segmentation"
2022-10-12 19:18:41 +00:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-12 19:18:41 +00:00
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
2020-01-20 08:43:29 +00:00
[[package]]
name = "unicode-width"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2020-05-24 17:00:36 +00:00
[[package]]
name = "web-sys"
2022-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +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-10-12 19:18:41 +00:00
checksum = "d6631b6a2fd59b1841b622e8f1a7ad241ef0a46f2d580464ce8140ac94cbd571"
2021-01-29 15:11:42 +00:00
dependencies = [
2022-10-12 19:18:41 +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-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-02-18 16:48:49 +00:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_gnu"
2022-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_i686_msvc"
2022-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-02-18 16:48:49 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-05-09 18:02:45 +00:00
version = "0.36.1"
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 = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-02-18 16:48:49 +00:00
2022-10-12 19:18:41 +00:00
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
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-10-12 19:18:41 +00:00
"time 0.3.15",
2020-12-19 19:36:51 +00:00
]