colmena/Cargo.lock

1255 lines
31 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 = "addr2line"
2023-01-28 07:44:41 +01:00
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aho-corasick"
2023-01-28 07:44:41 +01:00
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
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"
2023-01-28 07:44:41 +01:00
version = "0.1.62"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "689894c2db1ea643a50834b999abf1c110887402542955ff5451dab8f861f9ed"
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 = [
2023-01-28 07:44:41 +01:00
"hermit-abi 0.1.19",
2020-12-16 05:21:26 +01:00
"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 = "backtrace"
2023-01-28 07:44:41 +01:00
version = "0.3.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
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"
2023-01-28 07:44:41 +01:00
version = "1.3.0"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
2020-12-16 05:21:26 +01:00
[[package]]
name = "cc"
2023-01-28 07:44:41 +01:00
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
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"
2023-01-28 07:44:41 +01:00
version = "4.1.1"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2"
2020-12-16 05:21:26 +01:00
dependencies = [
"bitflags",
2022-04-19 09:29:35 +02:00
"clap_lex",
2023-01-28 07:44:41 +01:00
"is-terminal",
2020-12-16 05:21:26 +01:00
"strsim",
2022-01-03 19:37:03 +01:00
"termcolor",
]
[[package]]
name = "clap_complete"
2023-01-28 07:44:41 +01:00
version = "4.1.0"
2022-01-03 19:37:03 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "ce8955d4e8cd4f28f9a01c93a050194c4d131e73ca02f6636bcddbed867014d7"
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"
2023-01-28 07:44:41 +01:00
version = "0.3.1"
2022-04-19 09:29:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
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"
2023-01-28 07:44:41 +01:00
version = "0.15.5"
2021-08-25 18:51:48 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
2021-08-25 18:51:48 +02:00
dependencies = [
"encode_unicode",
2022-10-09 23:26:37 +02:00
"lazy_static",
2021-08-25 18:51:48 +02:00
"libc",
2022-01-03 19:37:03 +01:00
"unicode-width",
2023-01-28 07:44:41 +01:00
"windows-sys",
2021-08-25 18:51:48 +02:00
]
2021-11-18 22:15:20 +01:00
[[package]]
name = "const_format"
2023-01-28 07:44:41 +01:00
version = "0.2.30"
2021-11-18 22:15:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e"
2021-11-18 22:15:20 +01:00
dependencies = [
"const_format_proc_macros",
]
[[package]]
name = "const_format_proc_macros"
2023-01-28 07:44:41 +01:00
version = "0.2.29"
2021-11-18 22:15:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650"
2021-11-18 22:15:20 +01:00
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-09-19 01:27:46 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-19 01:27:46 +02:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
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"
2023-01-28 07:44:41 +01:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
2023-01-28 07:44:41 +01: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-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"
2022-09-19 01:27:46 +02:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-19 01:27:46 +02:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
"percent-encoding",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
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"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
2020-12-16 05:21:26 +01:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-executor"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2020-12-16 05:21:26 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-macro"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
2020-12-16 05:21:26 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-task"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2020-12-16 05:21:26 +01:00
[[package]]
name = "futures-util"
2023-01-28 07:44:41 +01:00
version = "0.3.25"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
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"
2023-01-28 07:44:41 +01:00
version = "0.2.8"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
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 = "gimli"
2023-01-28 07:44:41 +01:00
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"
2020-12-16 05:21:26 +01:00
[[package]]
name = "glob"
2023-01-28 07:44:41 +01:00
version = "0.3.1"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2020-12-16 05:21:26 +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",
]
2023-01-28 07:44:41 +01:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
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",
]
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",
]
[[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"
2020-12-16 05:21:26 +01:00
[[package]]
name = "indicatif"
2023-01-28 07:44:41 +01:00
version = "0.17.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729"
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",
2023-01-28 07:44:41 +01:00
"portable-atomic",
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",
]
2023-01-28 07:44:41 +01:00
[[package]]
name = "io-lifetimes"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e"
dependencies = [
"libc",
"windows-sys",
]
[[package]]
name = "is-terminal"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes",
"rustix",
"windows-sys",
]
[[package]]
name = "itertools"
2022-10-09 23:26:37 +02:00
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-09 23:26:37 +02:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "itoa"
2023-01-28 07:44:41 +01:00
version = "1.0.5"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
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"
2023-01-28 07:44:41 +01:00
version = "0.2.139"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
[[package]]
name = "linux-raw-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
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"
2023-01-28 07:44:41 +01:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
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 = "miniz_oxide"
2023-01-28 07:44:41 +01:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [
"adler",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "mio"
2023-01-28 07:44:41 +01:00
version = "0.8.5"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
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"
2023-01-28 07:44:41 +01:00
version = "1.15.0"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2020-12-16 05:21:26 +01:00
dependencies = [
2023-01-28 07:44:41 +01:00
"hermit-abi 0.2.6",
2020-12-16 05:21:26 +01:00
"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 = "object"
2023-01-28 07:44:41 +01:00
version = "0.30.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83"
dependencies = [
"memchr",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "once_cell"
2023-01-28 07:44:41 +01:00
version = "1.17.0"
2022-01-03 19:37:03 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
2022-01-03 19:37:03 +01:00
[[package]]
name = "os_str_bytes"
2023-01-28 07:44:41 +01:00
version = "6.4.1"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
2020-12-16 05:21:26 +01:00
[[package]]
name = "percent-encoding"
2022-09-19 01:27:46 +02:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-19 01:27:46 +02:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
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"
2023-01-28 07:44:41 +01:00
[[package]]
name = "portable-atomic"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b"
[[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"
2023-01-28 07:44:41 +01:00
version = "1.0.50"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2"
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"
2023-01-28 07:44:41 +01:00
version = "1.2.0"
2020-12-18 10:27:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "c5084cf776cb910f510c5aa4732a06933edb85f6f5785b6d12af90f364800211"
2020-12-18 10:27:44 +01:00
dependencies = [
"quit_macros",
]
[[package]]
name = "quit_macros"
2023-01-28 07:44:41 +01:00
version = "1.2.0"
2020-12-18 10:27:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "ef1cf4f32c7fe348eefee85d0941afc70da334fc046a3592cc5356bf60624242"
2020-12-18 10:27:44 +01:00
2020-12-16 05:21:26 +01:00
[[package]]
name = "quote"
2023-01-28 07:44:41 +01:00
version = "1.0.23"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
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"
2023-01-28 07:44:41 +01:00
version = "1.7.1"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
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"
2023-01-28 07:44:41 +01:00
version = "0.6.28"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
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 = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2023-01-28 07:44:41 +01:00
[[package]]
name = "rustix"
version = "0.36.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2020-12-16 05:21:26 +01:00
[[package]]
name = "ryu"
2023-01-28 07:44:41 +01:00
version = "1.0.12"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
2020-12-16 05:21:26 +01:00
[[package]]
name = "serde"
2023-01-28 07:44:41 +01:00
version = "1.0.152"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
2020-12-16 05:21:26 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-01-28 07:44:41 +01:00
version = "1.0.152"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
2020-12-16 05:21:26 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2023-01-28 07:44:41 +01:00
version = "1.0.91"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
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"
2023-01-28 07:44:41 +01:00
version = "0.7.4"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045"
2020-12-16 05:21:26 +01:00
dependencies = [
"backtrace",
2020-12-16 05:21:26 +01:00
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
2023-01-28 07:44:41 +01:00
version = "0.7.4"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2"
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"
2023-01-28 07:44:41 +01:00
version = "1.0.107"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
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"
2023-01-28 07:44:41 +01:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
"winapi-util",
]
2022-03-08 07:02:04 +01:00
[[package]]
name = "thiserror"
2023-01-28 07:44:41 +01:00
version = "1.0.38"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
2022-03-08 07:02:04 +01:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-01-28 07:44:41 +01:00
version = "1.0.38"
2022-03-08 07:02:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
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"
2023-01-28 07:44:41 +01:00
version = "1.24.2"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb"
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",
"pin-project-lite",
"signal-hook-registry",
"tokio-macros",
2023-01-28 07:44:41 +01:00
"windows-sys",
2020-12-16 05:21:26 +01:00
]
[[package]]
name = "tokio-macros"
2023-01-28 07:44:41 +01:00
version = "1.8.2"
2020-12-16 05:21:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
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"
2023-01-28 07:44:41 +01:00
version = "0.1.11"
2021-02-11 20:55:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
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"
2023-01-28 07:44:41 +01:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
[[package]]
name = "unicode-bidi"
2023-01-28 07:44:41 +01:00
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
2022-05-22 11:15:33 +02:00
[[package]]
name = "unicode-ident"
2023-01-28 07:44:41 +01:00
version = "1.0.6"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
[[package]]
name = "unicode-normalization"
2022-09-19 01:27:46 +02:00
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-19 01:27:46 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
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
[[package]]
name = "url"
2022-09-19 01:27:46 +02:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-19 01:27:46 +02:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
2022-09-19 01:27:46 +02:00
"idna 0.3.0",
"percent-encoding",
]
[[package]]
name = "uuid"
2023-01-28 07:44:41 +01:00
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
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 = [
2022-09-19 01:27:46 +02:00
"idna 0.2.3",
"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"
2023-01-28 07:44:41 +01:00
version = "0.42.0"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-05-22 11:15:33 +02:00
dependencies = [
2023-01-28 07:44:41 +01:00
"windows_aarch64_gnullvm",
2022-05-22 11:15:33 +02:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2023-01-28 07:44:41 +01:00
"windows_x86_64_gnullvm",
2022-05-22 11:15:33 +02:00
"windows_x86_64_msvc",
]
2023-01-28 07:44:41 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2022-05-22 11:15:33 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-01-28 07:44:41 +01:00
version = "0.42.1"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
2022-05-22 11:15:33 +02:00
[[package]]
name = "windows_i686_gnu"
2023-01-28 07:44:41 +01:00
version = "0.42.1"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
2022-05-22 11:15:33 +02:00
[[package]]
name = "windows_i686_msvc"
2023-01-28 07:44:41 +01:00
version = "0.42.1"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
2022-05-22 11:15:33 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-01-28 07:44:41 +01:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.1"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
2022-05-22 11:15:33 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-01-28 07:44:41 +01:00
version = "0.42.1"
2022-05-22 11:15:33 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-28 07:44:41 +01:00
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"