colmena/Cargo.lock

1129 lines
28 KiB
Text
Raw Normal View History

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
[[package]]
name = "aho-corasick"
2021-08-25 18:51:48 +02:00
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
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
[[package]]
name = "cc"
2022-03-08 07:02:04 +01:00
version = "1.0.73"
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-08-17 04:15:43 +02:00
version = "3.2.17"
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 = "29e724a68d9319343bb3328c9cc2dfde263f4b3142ee1059a9980580171c954b"
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-08-17 04:15:43 +02:00
version = "3.2.4"
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 = "e4179da71abd56c26b54dd0c248cc081c1f43b0a1a7e8448e28e57a29baa993d"
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",
]
[[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 = [
"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",
"clicolors-control",
2022-01-03 19:37:03 +01:00
"console",
2021-11-18 22:15:20 +01:00
"const_format",
"env_logger",
2020-12-16 05:21:26 +01:00
"futures",
"glob",
"hostname",
2020-12-16 05:21:26 +01:00
"indicatif",
"itertools",
2021-11-18 07:21:00 +01:00
"lazy_static",
"libc",
2020-12-16 05:21:26 +01:00
"log",
"ntest",
2020-12-18 10:27:44 +01:00
"quit",
"regex",
2020-12-16 05:21:26 +01:00
"serde",
"serde_json",
"shell-escape",
2020-12-16 05:21:26 +01:00
"snafu",
"sys-info",
2020-12-16 05:21:26 +01:00
"tempfile",
"tokio",
"tokio-stream",
2021-02-11 20:55:45 +01:00
"tokio-test",
"uuid",
"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"
[[package]]
name = "either"
2022-08-17 04:15:43 +02:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
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"
[[package]]
name = "env_logger"
2022-01-03 19:37:03 +01:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-03 19:37:03 +01:00
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
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",
]
[[package]]
name = "form_urlencoded"
2021-08-25 18:51:48 +02:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "ab30e97ab6aacfe635fad58f22c2bb06c8b685f7421eb1e064a729e2a5f481fa"
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-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1"
2020-12-16 05:21:26 +01:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-executor"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "1d11aa21b5b587a64682c0094c2bdd4df0076c5324961a40cc3abd7f37930528"
2020-12-16 05:21:26 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-macro"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "0db9cce532b0eae2ccf2766ab246f114b56b9cf6d445e00c2549fbc100ca045d"
2020-12-16 05:21:26 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-task"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-util"
2022-08-17 04:15:43 +02:00
version = "0.3.23"
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 = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577"
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",
]
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
[[package]]
name = "humantime"
2021-08-25 18:51:48 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "idna"
2021-08-25 18:51:48 +02:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "if_chain"
2021-08-25 18:51:48 +02:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
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-08-17 04:15:43 +02:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "fcc42b206e70d86ec03285b123e65a5458c92027d1fb2ae3555878b8113b3ddf"
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",
]
[[package]]
name = "itertools"
2022-01-03 19:37:03 +01:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-03 19:37:03 +01:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
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-08-17 04:15:43 +02:00
version = "0.2.131"
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 = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40"
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
]
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matches"
2021-08-25 18:51:48 +02:00
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
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
]
[[package]]
name = "ntest"
2022-08-17 04:15:43 +02:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "e865500b46e35210765d62d549178c520badc018b2a71a827c29b305d680d1fb"
dependencies = [
2022-08-17 04:15:43 +02:00
"ntest_proc_macro_helper",
"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"
[[package]]
name = "ntest_test_cases"
2022-06-04 08:51:32 +02:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 08:51:32 +02:00
checksum = "6f7caf063242bb66721e74515dc01a915901063fa1f994bee7a2b9136f13370e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ntest_timeout"
2022-08-17 04:15:43 +02:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "bca6eaadc7c104fb2eb0c6d14782b9e33775aaf5584c3bcb0f87c89e3e6d6c07"
dependencies = [
2022-08-17 04:15:43 +02:00
"ntest_proc_macro_helper",
"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"
version = "0.4.0"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2020-12-16 05:21:26 +01:00
[[package]]
name = "once_cell"
2022-08-17 04:15:43 +02:00
version = "1.13.0"
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 = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
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
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
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"
[[package]]
name = "proc-macro-crate"
2022-08-17 04:15:43 +02:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
dependencies = [
2022-08-17 04:15:43 +02:00
"once_cell",
2022-03-08 07:02:04 +01:00
"thiserror",
"toml",
]
[[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 = [
"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-08-17 04:15:43 +02:00
version = "1.0.143"
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 = "53e8e5d5b70924f74ff5c6d64d9a5acd91422117c60f48c4e07855238a254553"
2020-12-16 05:21:26 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-08-17 04:15:43 +02:00
version = "1.0.143"
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 = "d3d8e8de557aee63c26b85b947f5e59b690d0454c753f3adeb5cd7835ab88391"
2020-12-16 05:21:26 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-08-17 04:15:43 +02:00
version = "1.0.83"
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 = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7"
2020-12-16 05:21:26 +01:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[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
]
[[package]]
name = "sys-info"
2022-01-03 19:37:03 +01:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-03 19:37:03 +01:00
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
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",
]
[[package]]
name = "termcolor"
2022-03-08 07:02:04 +01:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-08 07:02:04 +01:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
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-03-08 07:02:04 +01:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
[[package]]
name = "thiserror"
2022-08-17 04:15:43 +02:00
version = "1.0.32"
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 = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994"
2022-03-08 07:02:04 +01:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-08-17 04:15:43 +02:00
version = "1.0.32"
2022-03-08 07:02:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21"
2022-03-08 07:02:04 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "tinyvec"
2022-05-22 11:15:33 +02:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 11:15:33 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
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-08-17 04:15:43 +02:00
version = "1.20.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 = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
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-08-17 04:15:43 +02:00
version = "0.1.9"
2021-02-11 20:55:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
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",
]
[[package]]
name = "toml"
2022-04-19 09:29:35 +02:00
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-19 09:29:35 +02:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
dependencies = [
"serde",
]
[[package]]
name = "unicode-bidi"
2022-05-22 11:15:33 +02:00
version = "0.3.8"
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-08-17 04:15:43 +02:00
version = "1.0.3"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
[[package]]
name = "unicode-normalization"
2022-08-17 04:15:43 +02:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
dependencies = [
"tinyvec",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "unicode-width"
2021-10-28 23:09:35 +02:00
version = "0.1.9"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-28 23:09:35 +02:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-12-16 05:21:26 +01:00
[[package]]
name = "unicode-xid"
2022-05-22 11:15:33 +02:00
version = "0.2.3"
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 = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
2020-12-16 05:21:26 +01:00
[[package]]
name = "url"
2021-08-25 18:51:48 +02:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-25 18:51:48 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "uuid"
2022-08-17 04:15:43 +02:00
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
dependencies = [
"getrandom",
"serde",
]
[[package]]
name = "validator"
2022-08-17 04:15:43 +02:00
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
dependencies = [
"idna",
"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"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 04:15:43 +02:00
checksum = "bc44ca3088bb3ba384d9aecf40c6a23a676ce23e09bdaca2073d99c207f864af"
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"
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",
]
[[package]]
name = "version_check"
2022-01-03 19:37:03 +01:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-03 19:37:03 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
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"