2020-12-16 05:21:26 +01:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-08-25 18:51:48 +02:00
|
|
|
version = 3
|
|
|
|
|
2020-12-29 20:31:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.7.19"
|
2020-12-29 20:31:19 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
|
2020-12-29 20:31:19 +01:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2021-02-11 20:55:45 +01:00
|
|
|
[[package]]
|
|
|
|
name = "async-stream"
|
2022-03-17 07:33:14 +01:00
|
|
|
version = "0.3.3"
|
2021-02-11 20:55:45 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-17 07:33:14 +01:00
|
|
|
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
|
2021-02-11 20:55:45 +01:00
|
|
|
dependencies = [
|
|
|
|
"async-stream-impl",
|
|
|
|
"futures-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-stream-impl"
|
2022-03-17 07:33:14 +01:00
|
|
|
version = "0.3.3"
|
2021-02-11 20:55:45 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-17 07:33:14 +01:00
|
|
|
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
|
2021-02-11 20:55:45 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "async-trait"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.1.57"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-16 09:54:53 +01:00
|
|
|
version = "1.1.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 09:54:53 +01:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "1.3.2"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.2.1"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
2021-01-24 23:08:48 +01:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2022-03-08 07:02:04 +01:00
|
|
|
version = "1.0.73"
|
2021-01-24 23:08:48 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-08 07:02:04 +01:00
|
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "3.2.22"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"bitflags",
|
2022-04-19 09:29:35 +02:00
|
|
|
"clap_lex",
|
2022-01-03 19:37:03 +01:00
|
|
|
"indexmap",
|
2020-12-16 05:21:26 +01:00
|
|
|
"strsim",
|
2022-01-03 19:37:03 +01:00
|
|
|
"termcolor",
|
2020-12-16 05:21:26 +01:00
|
|
|
"textwrap",
|
2022-01-03 19:37:03 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_complete"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "3.2.5"
|
2022-01-03 19:37:03 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8"
|
2022-01-03 19:37:03 +01:00
|
|
|
dependencies = [
|
|
|
|
"clap",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2022-04-19 09:29:35 +02:00
|
|
|
[[package]]
|
|
|
|
name = "clap_lex"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.2.4"
|
2022-04-19 09:29:35 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
2022-04-19 09:29:35 +02:00
|
|
|
dependencies = [
|
|
|
|
"os_str_bytes",
|
|
|
|
]
|
|
|
|
|
2021-12-04 10:03:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "clicolors-control"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e"
|
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "colmena"
|
2022-04-27 23:10:58 +02:00
|
|
|
version = "0.4.0-pre"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2022-01-23 02:50:53 +01:00
|
|
|
"async-stream",
|
2020-12-16 05:21:26 +01:00
|
|
|
"async-trait",
|
2021-02-10 04:28:45 +01:00
|
|
|
"atty",
|
2020-12-16 05:21:26 +01:00
|
|
|
"clap",
|
2022-01-03 19:37:03 +01:00
|
|
|
"clap_complete",
|
2021-12-04 10:03:26 +01:00
|
|
|
"clicolors-control",
|
2022-01-03 19:37:03 +01:00
|
|
|
"console",
|
2021-11-18 22:15:20 +01:00
|
|
|
"const_format",
|
2020-12-29 20:31:19 +01:00
|
|
|
"env_logger",
|
2020-12-16 05:21:26 +01:00
|
|
|
"futures",
|
|
|
|
"glob",
|
2020-12-20 00:07:29 +01:00
|
|
|
"hostname",
|
2020-12-16 05:21:26 +01:00
|
|
|
"indicatif",
|
2021-11-21 08:34:52 +01:00
|
|
|
"itertools",
|
2021-11-18 07:21:00 +01:00
|
|
|
"lazy_static",
|
2020-12-20 00:07:29 +01:00
|
|
|
"libc",
|
2020-12-16 05:21:26 +01:00
|
|
|
"log",
|
2022-02-05 05:58:17 +01:00
|
|
|
"ntest",
|
2020-12-18 10:27:44 +01:00
|
|
|
"quit",
|
2021-02-09 03:38:14 +01:00
|
|
|
"regex",
|
2020-12-16 05:21:26 +01:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2021-02-12 22:55:44 +01:00
|
|
|
"shell-escape",
|
2020-12-16 05:21:26 +01:00
|
|
|
"snafu",
|
2021-01-24 23:08:48 +01:00
|
|
|
"sys-info",
|
2020-12-16 05:21:26 +01:00
|
|
|
"tempfile",
|
|
|
|
"tokio",
|
2022-01-23 02:50:53 +01:00
|
|
|
"tokio-stream",
|
2021-02-11 20:55:45 +01:00
|
|
|
"tokio-test",
|
2021-11-21 08:34:52 +01:00
|
|
|
"uuid",
|
2021-02-09 03:38:14 +01:00
|
|
|
"validator",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2021-08-25 18:51:48 +02:00
|
|
|
[[package]]
|
|
|
|
name = "console"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.15.1"
|
2021-08-25 18:51:48 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847"
|
2021-08-25 18:51:48 +02:00
|
|
|
dependencies = [
|
|
|
|
"encode_unicode",
|
|
|
|
"libc",
|
2021-10-28 23:09:35 +02:00
|
|
|
"once_cell",
|
2021-08-25 18:51:48 +02:00
|
|
|
"terminal_size",
|
2022-01-03 19:37:03 +01:00
|
|
|
"unicode-width",
|
2021-08-25 18:51:48 +02:00
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2021-11-18 22:15:20 +01:00
|
|
|
[[package]]
|
|
|
|
name = "const_format"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.2.26"
|
2021-11-18 22:15:20 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "939dc9e2eb9077e0679d2ce32de1ded8531779360b003b4a972a7a39ec263495"
|
2021-11-18 22:15:20 +01:00
|
|
|
dependencies = [
|
|
|
|
"const_format_proc_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "const_format_proc_macros"
|
|
|
|
version = "0.2.22"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ef196d5d972878a48da7decb7686eded338b4858fbabeed513d63a7c98b2b82d"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "doc-comment"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
|
|
|
2021-11-21 08:34:52 +01:00
|
|
|
[[package]]
|
|
|
|
name = "either"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.8.0"
|
2021-11-21 08:34:52 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
2021-11-21 08:34:52 +01:00
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "encode_unicode"
|
|
|
|
version = "0.3.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
|
|
|
2020-12-29 20:31:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.9.1"
|
2020-12-29 20:31:19 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "c90bf5f19754d10198ccb95b70664fc925bd1fc090a0fd9a6ebc54acc8cd6272"
|
2020-12-29 20:31:19 +01:00
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"humantime",
|
|
|
|
"log",
|
|
|
|
"regex",
|
|
|
|
"termcolor",
|
|
|
|
]
|
|
|
|
|
2022-01-25 23:22:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.8.0"
|
2022-01-25 23:22:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
2022-01-25 23:22:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "form_urlencoded"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.1.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"percent-encoding",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "futures"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-channel"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-core"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-executor"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-io"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-macro"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-sink"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-task"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-util"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.3.24"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"memchr",
|
2021-08-25 18:51:48 +02:00
|
|
|
"pin-project-lite",
|
2020-12-16 05:21:26 +01:00
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.2.7"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2021-08-25 18:51:48 +02:00
|
|
|
"cfg-if",
|
2020-12-16 05:21:26 +01:00
|
|
|
"libc",
|
2022-08-17 04:15:43 +02:00
|
|
|
"wasi",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
|
|
|
|
2022-01-03 19:37:03 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.12.3"
|
2022-01-03 19:37:03 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
2022-01-03 19:37:03 +01:00
|
|
|
|
2022-01-25 23:22:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.4.0"
|
2022-01-25 23:22:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
2022-01-25 23:22:26 +01:00
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "0.1.19"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-12-20 00:07:29 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hostname"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"match_cfg",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2020-12-29 20:31:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "2.1.0"
|
2020-12-29 20:31:19 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
2020-12-29 20:31:19 +01:00
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "0.2.3"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"matches",
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
|
2022-09-19 01:27:46 +02:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
|
|
|
dependencies = [
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "if_chain"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "1.0.2"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
|
2021-02-09 03:38:14 +01:00
|
|
|
|
2022-01-03 19:37:03 +01:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.9.1"
|
2022-01-03 19:37:03 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
2022-01-03 19:37:03 +01:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"hashbrown",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "indicatif"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.17.1"
|
2022-01-05 23:01:05 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "bfddc9561e8baf264e0e45e197fd7696320026eb10a8180340debc27b18f535b"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2022-01-03 19:37:03 +01:00
|
|
|
"console",
|
2020-12-16 05:21:26 +01:00
|
|
|
"number_prefix",
|
2022-02-16 09:54:53 +01:00
|
|
|
"unicode-width",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2022-01-25 23:22:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
|
|
|
version = "0.1.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2021-11-21 08:34:52 +01:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.10.4"
|
2021-11-21 08:34:52 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "d8bf247779e67a9082a4790b45e71ac7cfd1321331a5c856a74a9faebdab78d0"
|
2021-11-21 08:34:52 +01:00
|
|
|
dependencies = [
|
|
|
|
"either",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.0.3"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.2.132"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.4.17"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2021-08-25 18:51:48 +02:00
|
|
|
"cfg-if",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2020-12-20 00:07:29 +01:00
|
|
|
[[package]]
|
|
|
|
name = "match_cfg"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "matches"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "0.1.9"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
2021-02-09 03:38:14 +01:00
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "2.5.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mio"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.8.4"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"log",
|
2022-08-17 04:15:43 +02:00
|
|
|
"wasi",
|
2022-05-22 11:15:33 +02:00
|
|
|
"windows-sys",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2022-02-05 05:58:17 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ntest"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.8.1"
|
2022-02-05 05:58:17 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "e865500b46e35210765d62d549178c520badc018b2a71a827c29b305d680d1fb"
|
2022-02-05 05:58:17 +01:00
|
|
|
dependencies = [
|
2022-08-17 04:15:43 +02:00
|
|
|
"ntest_proc_macro_helper",
|
2022-02-05 05:58:17 +01:00
|
|
|
"ntest_test_cases",
|
|
|
|
"ntest_timeout",
|
|
|
|
]
|
|
|
|
|
2022-06-04 08:51:32 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ntest_proc_macro_helper"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a0e328d267a679d683b55222b3d06c2fb7358220857945bfc4e65a6b531e9994"
|
|
|
|
|
2022-02-05 05:58:17 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ntest_test_cases"
|
2022-06-04 08:51:32 +02:00
|
|
|
version = "0.8.0"
|
2022-02-05 05:58:17 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-04 08:51:32 +02:00
|
|
|
checksum = "6f7caf063242bb66721e74515dc01a915901063fa1f994bee7a2b9136f13370e"
|
2022-02-05 05:58:17 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ntest_timeout"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.8.1"
|
2022-02-05 05:58:17 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "bca6eaadc7c104fb2eb0c6d14782b9e33775aaf5584c3bcb0f87c89e3e6d6c07"
|
2022-02-05 05:58:17 +01:00
|
|
|
dependencies = [
|
2022-08-17 04:15:43 +02:00
|
|
|
"ntest_proc_macro_helper",
|
2022-02-05 05:58:17 +01:00
|
|
|
"proc-macro-crate",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "num_cpus"
|
2022-01-03 19:37:03 +01:00
|
|
|
version = "1.13.1"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 19:37:03 +01:00
|
|
|
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "number_prefix"
|
2021-11-17 06:01:33 +01:00
|
|
|
version = "0.4.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-17 06:01:33 +01:00
|
|
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.14.0"
|
2022-01-03 19:37:03 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
|
2022-01-03 19:37:03 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "6.3.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "percent-encoding"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "2.2.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
2021-02-09 03:38:14 +01:00
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.2.9"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
|
|
2022-02-05 05:58:17 +01:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-crate"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.2.1"
|
2022-02-05 05:58:17 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
|
2022-02-05 05:58:17 +01:00
|
|
|
dependencies = [
|
2022-08-17 04:15:43 +02:00
|
|
|
"once_cell",
|
2022-03-08 07:02:04 +01:00
|
|
|
"thiserror",
|
2022-02-05 05:58:17 +01:00
|
|
|
"toml",
|
|
|
|
]
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro-error-attr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.0.43"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2022-05-22 11:15:33 +02:00
|
|
|
"unicode-ident",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2020-12-18 10:27:44 +01:00
|
|
|
[[package]]
|
|
|
|
name = "quit"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "1.1.4"
|
2020-12-18 10:27:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "bad314fc86f60b58587ffaf97e3150ed6f0aece74012db9cf0e36ee88768e49d"
|
2020-12-18 10:27:44 +01:00
|
|
|
dependencies = [
|
|
|
|
"quit_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quit_macros"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "1.1.4"
|
2020-12-18 10:27:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "a411616b47dce3139c0169c89899ba5ea3534e545ab4d0c1d3956460fe781bae"
|
2020-12-18 10:27:44 +01:00
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.0.21"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.2.16"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
2021-08-25 18:51:48 +02:00
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
]
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.6.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2020-12-29 20:31:19 +01:00
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
2020-12-16 05:21:26 +01:00
|
|
|
"regex-syntax",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.6.27"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.0.11"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.144"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.144"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.85"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2021-02-12 22:55:44 +01:00
|
|
|
[[package]]
|
|
|
|
name = "shell-escape"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "1.4.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.4.7"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "snafu"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.7.1"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "5177903bf45656592d9eb5c0e22f408fc023aae51dbe2088889b71633ba451f2"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"doc-comment",
|
|
|
|
"snafu-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "snafu-derive"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.7.1"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "410b26ed97440d90ced3e2488c868d56a86e2064f5d7d6f417909b286afe25e5"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2022-01-25 23:22:26 +01:00
|
|
|
"heck",
|
2020-12-16 05:21:26 +01:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2022-01-03 19:37:03 +01:00
|
|
|
version = "0.10.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 19:37:03 +01:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.0.99"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-05-22 11:15:33 +02:00
|
|
|
"unicode-ident",
|
2020-12-16 05:21:26 +01:00
|
|
|
]
|
|
|
|
|
2021-01-24 23:08:48 +01:00
|
|
|
[[package]]
|
|
|
|
name = "sys-info"
|
2022-01-03 19:37:03 +01:00
|
|
|
version = "0.9.1"
|
2021-01-24 23:08:48 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 19:37:03 +01:00
|
|
|
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
|
2021-01-24 23:08:48 +01:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
2022-01-25 23:22:26 +01:00
|
|
|
version = "3.3.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-25 23:22:26 +01:00
|
|
|
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2021-08-25 18:51:48 +02:00
|
|
|
"cfg-if",
|
2022-01-25 23:22:26 +01:00
|
|
|
"fastrand",
|
2020-12-16 05:21:26 +01:00
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"remove_dir_all",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2020-12-29 20:31:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
2022-03-08 07:02:04 +01:00
|
|
|
version = "1.1.3"
|
2020-12-29 20:31:19 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-08 07:02:04 +01:00
|
|
|
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
2020-12-29 20:31:19 +01:00
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "terminal_size"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "0.1.17"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.15.1"
|
2022-03-08 07:02:04 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
|
2022-03-08 07:02:04 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.35"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85"
|
2022-03-08 07:02:04 +01:00
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.35"
|
2022-03-08 07:02:04 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783"
|
2022-03-08 07:02:04 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
2020-12-16 05:21:26 +01:00
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "1.6.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"tinyvec_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec_macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tokio"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.21.1"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "0020c875007ad96677dcc890298f4b942882c5d4eb7cc8f439fc3bf813dc9c95"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
2022-08-17 04:15:43 +02:00
|
|
|
"autocfg",
|
2020-12-16 05:21:26 +01:00
|
|
|
"bytes",
|
|
|
|
"libc",
|
|
|
|
"memchr",
|
|
|
|
"mio",
|
|
|
|
"num_cpus",
|
|
|
|
"once_cell",
|
|
|
|
"pin-project-lite",
|
|
|
|
"signal-hook-registry",
|
|
|
|
"tokio-macros",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio-macros"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.8.0"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
|
2020-12-16 05:21:26 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-02-11 20:55:45 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-stream"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.1.10"
|
2021-02-11 20:55:45 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "f6edf2d6bc038a43d31353570e27270603f4648d18f5ed10c0e179abe43255af"
|
2021-02-11 20:55:45 +01:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio-test"
|
2021-08-25 18:51:48 +02:00
|
|
|
version = "0.4.2"
|
2021-02-11 20:55:45 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-25 18:51:48 +02:00
|
|
|
checksum = "53474327ae5e166530d17f2d956afcb4f8a004de581b3cae10f12006bc8163e3"
|
2021-02-11 20:55:45 +01:00
|
|
|
dependencies = [
|
|
|
|
"async-stream",
|
|
|
|
"bytes",
|
|
|
|
"futures-core",
|
|
|
|
"tokio",
|
|
|
|
"tokio-stream",
|
|
|
|
]
|
|
|
|
|
2022-02-05 05:58:17 +01:00
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2022-04-19 09:29:35 +02:00
|
|
|
version = "0.5.9"
|
2022-02-05 05:58:17 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-19 09:29:35 +02:00
|
|
|
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
|
2022-02-05 05:58:17 +01:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-bidi"
|
2022-05-22 11:15:33 +02:00
|
|
|
version = "0.3.8"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-22 11:15:33 +02:00
|
|
|
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "1.0.4"
|
2022-05-22 11:15:33 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
|
2021-02-09 03:38:14 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.1.22"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"tinyvec",
|
|
|
|
]
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-width"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.1.10"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "0.2.4"
|
2020-12-16 05:21:26 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
2020-12-16 05:21:26 +01:00
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "url"
|
2022-09-19 01:27:46 +02:00
|
|
|
version = "2.3.1"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 01:27:46 +02:00
|
|
|
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"form_urlencoded",
|
2022-09-19 01:27:46 +02:00
|
|
|
"idna 0.3.0",
|
2021-02-09 03:38:14 +01:00
|
|
|
"percent-encoding",
|
|
|
|
]
|
|
|
|
|
2021-11-21 08:34:52 +01:00
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "1.1.2"
|
2021-11-21 08:34:52 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
|
2021-11-21 08:34:52 +01:00
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2021-02-09 03:38:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "validator"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.16.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
2022-09-19 01:27:46 +02:00
|
|
|
"idna 0.2.3",
|
2021-02-09 03:38:14 +01:00
|
|
|
"lazy_static",
|
|
|
|
"regex",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
"url",
|
|
|
|
"validator_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "validator_derive"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.16.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "bc44ca3088bb3ba384d9aecf40c6a23a676ce23e09bdaca2073d99c207f864af"
|
2021-02-09 03:38:14 +01:00
|
|
|
dependencies = [
|
|
|
|
"if_chain",
|
|
|
|
"lazy_static",
|
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"regex",
|
|
|
|
"syn",
|
|
|
|
"validator_types",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "validator_types"
|
2022-08-17 04:15:43 +02:00
|
|
|
version = "0.16.0"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-17 04:15:43 +02:00
|
|
|
checksum = "111abfe30072511849c5910134e8baf8dc05de4c0e5903d681cbd5c9c4d611e3"
|
2022-01-03 19:37:03 +01:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"syn",
|
|
|
|
]
|
2021-02-09 03:38:14 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-01-03 19:37:03 +01:00
|
|
|
version = "0.9.4"
|
2021-02-09 03:38:14 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 19:37:03 +01:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2021-02-09 03:38:14 +01:00
|
|
|
|
2022-03-17 07:33:14 +01:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
2020-12-16 05:21:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.3.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2022-05-22 11:15:33 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_msvc",
|
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
|
|
|
"windows_x86_64_msvc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|