mensa/Cargo.lock

2121 lines
51 KiB
Plaintext
Raw Normal View History

2021-10-11 12:22:08 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2019-04-11 17:31:19 +02:00
2021-10-12 11:47:00 +02:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "async-channel"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
[[package]]
name = "async-global-executor"
2022-03-29 17:43:01 +02:00
version = "2.0.3"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c026b7e44f1316b567ee750fea85103f87fcb80792b860e979f221259796ca0a"
2021-10-13 22:49:06 +02:00
dependencies = [
"async-channel",
"async-executor",
"async-io",
"async-mutex",
"blocking",
"futures-lite",
"num_cpus",
"once_cell",
]
[[package]]
name = "async-io"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"
dependencies = [
"concurrent-queue",
"futures-lite",
"libc",
"log",
"once_cell",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
"winapi",
]
[[package]]
name = "async-lock"
2022-03-29 17:43:01 +02:00
version = "2.5.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
2021-10-13 22:49:06 +02:00
dependencies = [
"event-listener",
]
[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
"event-listener",
]
[[package]]
name = "async-process"
2022-03-29 17:43:01 +02:00
version = "1.3.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "83137067e3a2a6a06d67168e49e68a0957d215410473a740cea95a2425c0b7c6"
2021-10-13 22:49:06 +02:00
dependencies = [
"async-io",
"blocking",
"cfg-if",
"event-listener",
"futures-lite",
"libc",
"once_cell",
"signal-hook",
"winapi",
]
[[package]]
name = "async-std"
2022-03-29 17:43:01 +02:00
version = "1.11.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "52580991739c5cdb36cde8b2a516371c0a3b70dda36d916cc08b82372916808c"
2021-10-13 22:49:06 +02:00
dependencies = [
"async-channel",
"async-global-executor",
"async-io",
"async-lock",
"async-process",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"num_cpus",
"once_cell",
"pin-project-lite",
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-task"
2022-03-29 17:43:01 +02:00
version = "4.2.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "30696a84d817107fc028e049980e09d5e140e8da8f1caeb17e8e950658a3cea9"
2021-10-13 22:49:06 +02:00
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
2021-10-12 11:47:00 +02:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "autocfg"
2022-03-29 17:43:01 +02:00
version = "1.1.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
dependencies = [
"byteorder",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "base64"
2021-10-11 12:22:08 +02:00
version = "0.13.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2019-04-11 17:31:19 +02:00
[[package]]
name = "bitflags"
2021-10-11 12:22:08 +02:00
version = "1.3.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array 0.12.4",
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2022-03-29 17:43:01 +02:00
"generic-array 0.14.5",
2021-10-13 22:49:06 +02:00
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
[[package]]
name = "blocking"
2022-03-29 17:43:01 +02:00
version = "1.2.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
2021-10-13 22:49:06 +02:00
dependencies = [
"async-channel",
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
"once_cell",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "bumpalo"
2022-03-29 17:43:01 +02:00
version = "3.9.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2021-10-12 11:47:00 +02:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2019-04-11 17:31:19 +02:00
[[package]]
name = "bytes"
2021-10-11 12:22:08 +02:00
version = "1.1.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "cacache"
version = "9.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "205ae2da91f7633dd4ecc1b12fac60c991a48b61b2cd801ad533085b15392537"
dependencies = [
"async-std",
"digest 0.9.0",
"either",
"futures",
"hex 0.4.3",
"memmap",
"serde",
"serde_derive",
"serde_json",
"sha-1 0.9.8",
2022-03-29 17:43:01 +02:00
"sha2 0.9.9",
2021-10-13 22:49:06 +02:00
"ssri",
"tempfile",
"thiserror",
"walkdir",
]
[[package]]
name = "cache-padded"
2022-03-29 17:43:01 +02:00
version = "1.2.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
2021-10-13 22:49:06 +02:00
2019-04-11 17:31:19 +02:00
[[package]]
name = "cc"
2022-03-29 17:43:01 +02:00
version = "1.0.73"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "cfg-if"
version = "1.0.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "chrono"
2021-10-12 11:47:00 +02:00
version = "0.4.19"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"libc",
2021-10-11 12:22:08 +02:00
"num-integer",
"num-traits",
"time",
2021-10-12 11:47:00 +02:00
"winapi",
]
[[package]]
name = "clap"
2022-03-29 17:43:01 +02:00
version = "2.34.0"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2021-10-12 11:47:00 +02:00
dependencies = [
2022-03-29 17:43:01 +02:00
"ansi_term",
2021-10-12 11:47:00 +02:00
"atty",
"bitflags",
"strsim",
"term_size",
2021-10-12 14:51:49 +02:00
"textwrap 0.11.0",
2021-10-12 11:47:00 +02:00
"unicode-width",
"vec_map",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "concurrent-queue"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
dependencies = [
"cache-padded",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "core-foundation"
2022-03-29 17:43:01 +02:00
version = "0.9.3"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"core-foundation-sys",
"libc",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "core-foundation-sys"
2021-10-14 16:17:54 +02:00
version = "0.8.3"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 16:17:54 +02:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "cpufeatures"
2022-03-29 17:43:01 +02:00
version = "0.2.2"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
2021-10-13 22:49:06 +02:00
dependencies = [
"libc",
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "crossbeam-utils"
2022-03-29 17:43:01 +02:00
version = "0.8.8"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2021-10-12 11:47:00 +02:00
dependencies = [
"cfg-if",
"lazy_static",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "ctor"
2022-03-29 17:43:01 +02:00
version = "0.1.22"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
2021-10-13 22:49:06 +02:00
dependencies = [
"quote",
"syn",
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "date_time_parser"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f86cad3e692d9b556cb8b64357f50f3b1b8411f3c8999f0bb94523991b5ded6c"
dependencies = [
"chrono",
"regex",
]
2021-10-16 18:54:57 +02:00
[[package]]
name = "diff"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
2021-10-13 22:49:06 +02:00
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array 0.12.4",
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2022-03-29 17:43:01 +02:00
"generic-array 0.14.5",
2021-10-13 22:49:06 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
2021-10-14 13:55:07 +02:00
name = "directories-next"
version = "2.0.0"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 13:55:07 +02:00
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
2021-10-12 11:47:00 +02:00
dependencies = [
2021-10-14 13:55:07 +02:00
"cfg-if",
"dirs-sys-next",
2021-10-12 11:47:00 +02:00
]
[[package]]
2021-10-14 13:55:07 +02:00
name = "dirs-sys-next"
version = "0.1.2"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 13:55:07 +02:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2021-10-12 11:47:00 +02:00
dependencies = [
"libc",
2021-10-14 13:55:07 +02:00
"redox_users",
2021-10-12 11:47:00 +02:00
"winapi",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2019-04-11 17:31:19 +02:00
[[package]]
name = "encoding_rs"
2022-03-29 17:43:01 +02:00
version = "0.8.30"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "event-listener"
2022-03-29 17:43:01 +02:00
version = "2.5.2"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
2021-10-13 22:49:06 +02:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
[[package]]
name = "fastrand"
2022-03-29 17:43:01 +02:00
version = "1.7.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
2021-10-13 22:49:06 +02:00
dependencies = [
"instant",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "fnv"
2021-10-12 11:47:00 +02:00
version = "1.0.7"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-04-11 17:31:19 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"foreign-types-shared",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "form_urlencoded"
version = "1.0.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "futures"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2021-10-13 22:49:06 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "futures-channel"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"futures-core",
2021-10-13 22:49:06 +02:00
"futures-sink",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "futures-core"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "futures-executor"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2021-10-13 22:49:06 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2021-10-13 16:15:11 +02:00
[[package]]
name = "futures-io"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2021-10-13 16:15:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-10-13 16:15:11 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2021-10-13 22:49:06 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "futures-sink"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "futures-task"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "futures-util"
2022-03-29 17:43:01 +02:00
version = "0.3.21"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-13 22:49:06 +02:00
"futures-channel",
2021-10-11 12:22:08 +02:00
"futures-core",
2021-10-13 16:15:11 +02:00
"futures-io",
2021-10-13 22:49:06 +02:00
"futures-macro",
"futures-sink",
2021-10-11 12:22:08 +02:00
"futures-task",
2021-10-13 16:15:11 +02:00
"memchr",
2021-10-11 12:22:08 +02:00
"pin-project-lite",
"pin-utils",
2021-10-13 16:15:11 +02:00
"slab",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "generic-array"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
dependencies = [
"typenum",
]
[[package]]
name = "generic-array"
2022-03-29 17:43:01 +02:00
version = "0.14.5"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2021-10-13 22:49:06 +02:00
dependencies = [
"typenum",
"version_check",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "getrandom"
2022-03-29 17:43:01 +02:00
version = "0.2.6"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-11 12:22:08 +02:00
"libc",
2022-03-29 17:43:01 +02:00
"wasi 0.10.2+wasi-snapshot-preview1",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "gloo-timers"
2022-03-29 17:43:01 +02:00
version = "0.2.3"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "4d12a7f4e95cfe710f1d624fb1210b7d961a5fb05c4fd942f4feab06e61f590e"
2021-10-13 22:49:06 +02:00
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "h2"
2022-03-29 17:43:01 +02:00
version = "0.3.12"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "62eeb471aa3e3c9197aa4bfeabfe02982f6dc96f750486c0bb0009ac58b26d2b"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "hashbrown"
version = "0.11.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2019-04-11 17:31:19 +02:00
2021-10-12 11:47:00 +02:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "hex"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "http"
2022-03-29 17:43:01 +02:00
version = "0.2.6"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"fnv",
"itoa",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "http-body"
2021-10-24 17:06:17 +02:00
version = "0.4.4"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 17:06:17 +02:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"http",
"pin-project-lite",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "httparse"
2022-03-29 17:43:01 +02:00
version = "1.6.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "httpdate"
2022-03-29 17:43:01 +02:00
version = "1.0.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2019-04-11 17:31:19 +02:00
[[package]]
name = "hyper"
2022-03-29 17:43:01 +02:00
version = "0.14.18"
2021-10-11 12:22:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
2021-10-11 12:22:08 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
2021-10-12 11:47:00 +02:00
"pin-project-lite",
2021-10-11 12:22:08 +02:00
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "hyper-tls"
2021-10-11 12:22:08 +02:00
version = "0.5.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "idna"
2021-10-11 12:22:08 +02:00
version = "0.2.3"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "indexmap"
2022-03-29 17:43:01 +02:00
version = "1.8.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
2021-10-11 12:22:08 +02:00
dependencies = [
"autocfg",
"hashbrown",
]
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "instant"
2021-10-22 16:51:16 +02:00
version = "0.1.12"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 16:51:16 +02:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-10-13 22:49:06 +02:00
dependencies = [
"cfg-if",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "ipnet"
2022-03-29 17:43:01 +02:00
version = "2.4.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c"
2019-04-11 17:31:19 +02:00
[[package]]
name = "is_ci"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
2021-10-16 18:54:57 +02:00
[[package]]
name = "itertools"
2022-03-29 17:43:01 +02:00
version = "0.10.3"
2021-10-16 18:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-10-16 18:54:57 +02:00
dependencies = [
"either",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "itoa"
2022-03-29 17:43:01 +02:00
version = "1.0.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "js-sys"
2022-03-29 17:43:01 +02:00
version = "0.3.56"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"wasm-bindgen",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "lazy_static"
2021-10-11 12:22:08 +02:00
version = "1.4.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-04-11 17:31:19 +02:00
[[package]]
name = "libc"
2022-03-29 17:43:01 +02:00
version = "0.2.121"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
2019-04-11 17:31:19 +02:00
[[package]]
name = "log"
2022-03-29 17:43:01 +02:00
version = "0.4.16"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-13 22:49:06 +02:00
"value-bag",
2021-10-12 11:47:00 +02:00
]
[[package]]
name = "matchers"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
dependencies = [
"regex-automata",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "matches"
2021-10-12 11:47:00 +02:00
version = "0.1.9"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2019-04-11 17:31:19 +02:00
[[package]]
name = "memchr"
2021-10-12 11:47:00 +02:00
version = "2.4.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
dependencies = [
"libc",
"winapi",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "mensa"
2022-03-29 17:43:01 +02:00
version = "0.5.0"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-13 22:49:06 +02:00
"cacache",
2021-10-11 12:22:08 +02:00
"chrono",
2021-10-12 11:47:00 +02:00
"date_time_parser",
2021-10-14 13:55:07 +02:00
"directories-next",
"itertools",
2021-10-11 12:22:08 +02:00
"lazy_static",
2021-10-12 11:47:00 +02:00
"num_enum",
"owo-colors",
2021-10-16 18:54:57 +02:00
"pretty_assertions",
2021-10-12 11:47:00 +02:00
"regex",
2021-10-13 16:15:11 +02:00
"remain",
2021-10-11 12:22:08 +02:00
"reqwest",
2021-10-12 11:47:00 +02:00
"serde",
2021-10-13 22:49:06 +02:00
"serde_json",
2021-10-12 21:21:01 +02:00
"serde_plain",
"ssri",
2021-10-12 11:47:00 +02:00
"structopt",
2021-10-13 16:15:11 +02:00
"strum",
"terminal_size",
2021-10-12 14:51:49 +02:00
"textwrap 0.14.2",
2021-10-11 12:22:08 +02:00
"thiserror",
2021-10-12 11:47:00 +02:00
"toml",
"tracing",
"tracing-subscriber",
2021-10-12 14:51:49 +02:00
"unicode-width",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "mime"
2021-10-11 12:22:08 +02:00
version = "0.3.16"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2019-04-11 17:31:19 +02:00
[[package]]
name = "mio"
2022-03-29 17:43:01 +02:00
version = "0.8.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"libc",
"log",
"miow",
"ntapi",
2022-03-29 17:43:01 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-10-11 12:22:08 +02:00
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "miow"
2021-10-11 12:22:08 +02:00
version = "0.3.7"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "native-tls"
2022-03-29 17:43:01 +02:00
version = "0.2.10"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "ntapi"
2022-03-29 17:43:01 +02:00
version = "0.3.7"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "num-integer"
2021-10-12 11:47:00 +02:00
version = "0.1.44"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"autocfg",
2021-10-11 12:22:08 +02:00
"num-traits",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "num-traits"
2021-10-12 11:47:00 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2022-03-29 17:43:01 +02:00
version = "1.13.1"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-10-12 11:47:00 +02:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_enum"
2022-03-29 17:43:01 +02:00
version = "0.5.7"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
2021-10-12 11:47:00 +02:00
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2022-03-29 17:43:01 +02:00
version = "0.5.7"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
2021-10-12 11:47:00 +02:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
"syn",
]
2019-04-11 17:31:19 +02:00
2021-10-11 12:22:08 +02:00
[[package]]
name = "once_cell"
2022-03-29 17:43:01 +02:00
version = "1.10.0"
2021-10-11 12:22:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2019-04-11 17:31:19 +02:00
[[package]]
name = "openssl"
2022-03-29 17:43:01 +02:00
version = "0.10.38"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bitflags",
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-11 12:22:08 +02:00
"foreign-types",
"libc",
"once_cell",
"openssl-sys",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "openssl-probe"
2022-03-29 17:43:01 +02:00
version = "0.1.5"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2019-04-11 17:31:19 +02:00
[[package]]
name = "openssl-sys"
2022-03-29 17:43:01 +02:00
version = "0.9.72"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-04-11 17:31:19 +02:00
]
2021-10-16 18:54:57 +02:00
[[package]]
name = "output_vt100"
2022-03-29 17:43:01 +02:00
version = "0.1.3"
2021-10-16 18:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
2021-10-16 18:54:57 +02:00
dependencies = [
"winapi",
]
[[package]]
name = "owo-colors"
2022-03-29 17:43:01 +02:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "5e72e30578e0d0993c8ae20823dd9cff2bc5517d2f586a8aef462a581e8a03eb"
dependencies = [
"supports-color",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-12 11:47:00 +02:00
name = "percent-encoding"
version = "2.1.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "pin-project-lite"
2022-03-29 17:43:01 +02:00
version = "0.2.8"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "pin-utils"
version = "0.1.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-04-11 17:31:19 +02:00
[[package]]
name = "pkg-config"
2022-03-29 17:43:01 +02:00
version = "0.3.24"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "polling"
2022-03-29 17:43:01 +02:00
version = "2.2.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
2021-10-13 22:49:06 +02:00
dependencies = [
"cfg-if",
"libc",
"log",
"wepoll-ffi",
"winapi",
]
2021-10-16 18:54:57 +02:00
[[package]]
name = "pretty_assertions"
2022-03-29 17:43:01 +02:00
version = "1.2.0"
2021-10-16 18:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "57c038cb5319b9c704bf9c227c261d275bfec0ad438118a2787ce47944fb228b"
2021-10-16 18:54:57 +02:00
dependencies = [
2022-03-29 17:43:01 +02:00
"ansi_term",
2021-10-16 18:54:57 +02:00
"ctor",
"diff",
"output_vt100",
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "proc-macro-crate"
2022-03-29 17:43:01 +02:00
version = "1.1.3"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
2021-10-12 11:47:00 +02:00
dependencies = [
"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",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "proc-macro2"
2022-03-29 17:43:01 +02:00
version = "1.0.36"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"unicode-xid",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "quote"
2022-03-29 17:43:01 +02:00
version = "1.0.17"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "632d02bff7f874a36f33ea8bb416cd484b90cc66c1194b1a1110d067a7013f58"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"proc-macro2",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "redox_syscall"
2022-03-29 17:43:01 +02:00
version = "0.2.12"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "8ae183fc1b06c149f0c1793e1eb447c8b04bfe46d48e9e48bfb8d2d7ed64ecf0"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bitflags",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "redox_users"
2022-03-29 17:43:01 +02:00
version = "0.4.2"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "7776223e2696f1aa4c6b0170e83212f47296a00424305117d013dfe86fb0fe55"
2021-10-12 11:47:00 +02:00
dependencies = [
2021-10-14 13:55:07 +02:00
"getrandom",
"redox_syscall",
2022-03-29 17:43:01 +02:00
"thiserror",
2021-10-12 11:47:00 +02:00
]
[[package]]
name = "regex"
2022-03-29 17:43:01 +02:00
version = "1.5.5"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
2021-10-12 11:47:00 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2021-10-13 16:15:11 +02:00
[[package]]
name = "remain"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ba1e78fa68412cb93ef642fd4d20b9a941be49ee9333875ebaf13112673ea7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "remove_dir_all"
2021-10-12 11:47:00 +02:00
version = "0.5.3"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "reqwest"
2022-03-29 17:43:01 +02:00
version = "0.11.10"
2021-10-11 12:22:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
2021-10-11 12:22:08 +02:00
dependencies = [
2021-10-13 22:49:06 +02:00
"base64 0.13.0",
2021-10-11 12:22:08 +02:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
2022-03-29 17:43:01 +02:00
"h2",
2021-10-11 12:22:08 +02:00
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "ryu"
2022-03-29 17:43:01 +02:00
version = "1.0.9"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "schannel"
version = "0.1.19"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"lazy_static",
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "security-framework"
2022-03-29 17:43:01 +02:00
version = "2.6.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "security-framework-sys"
2022-03-29 17:43:01 +02:00
version = "2.6.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"core-foundation-sys",
"libc",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "serde"
2022-03-29 17:43:01 +02:00
version = "1.0.136"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
2021-10-12 11:47:00 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-03-29 17:43:01 +02:00
version = "1.0.136"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2021-10-12 11:47:00 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "serde_json"
2022-03-29 17:43:01 +02:00
version = "1.0.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"itoa",
2021-10-12 11:47:00 +02:00
"ryu",
2021-10-11 12:22:08 +02:00
"serde",
2019-04-11 17:31:19 +02:00
]
2021-10-12 21:21:01 +02:00
[[package]]
name = "serde_plain"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95455e7e29fada2052e72170af226fbe368a4ca33dee847875325d9fdb133858"
dependencies = [
"serde",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "serde_urlencoded"
2022-03-29 17:43:01 +02:00
version = "0.7.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"form_urlencoded",
"itoa",
2021-10-12 11:47:00 +02:00
"ryu",
2021-10-11 12:22:08 +02:00
"serde",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
[[package]]
name = "sha-1"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug 0.3.0",
]
[[package]]
name = "sha2"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
[[package]]
name = "sha2"
2022-03-29 17:43:01 +02:00
version = "0.9.9"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2021-10-13 22:49:06 +02:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug 0.3.0",
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "sharded-slab"
2021-10-14 16:17:54 +02:00
version = "0.1.4"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 16:17:54 +02:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2021-10-12 11:47:00 +02:00
dependencies = [
"lazy_static",
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "signal-hook"
2022-03-29 17:43:01 +02:00
version = "0.3.13"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d"
2021-10-13 22:49:06 +02:00
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "slab"
2021-10-14 16:17:54 +02:00
version = "0.4.5"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-14 16:17:54 +02:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2021-10-12 11:47:00 +02:00
[[package]]
name = "smallvec"
2022-03-29 17:43:01 +02:00
version = "1.8.0"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
2019-04-11 17:31:19 +02:00
2021-10-12 14:51:49 +02:00
[[package]]
name = "smawk"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "socket2"
2022-03-29 17:43:01 +02:00
version = "0.4.4"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"libc",
"winapi",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "ssri"
version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9cec0d388f39fbe79d7aa600e8d38053bf97b1bc8d350da7c0ba800d0f423f2"
dependencies = [
"base64 0.10.1",
"digest 0.8.1",
"hex 0.3.2",
"serde",
"sha-1 0.8.2",
"sha2 0.8.2",
"thiserror",
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "structopt"
2022-03-29 17:43:01 +02:00
version = "0.3.26"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2021-10-12 11:47:00 +02:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2021-10-22 16:51:16 +02:00
version = "0.4.18"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-22 16:51:16 +02:00
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2021-10-12 11:47:00 +02:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2021-10-13 16:15:11 +02:00
[[package]]
name = "strum"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "supports-color"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4872ced36b91d47bae8a214a683fe54e7078875b399dfa251df346c9b547d1f9"
dependencies = [
"atty",
"is_ci",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "syn"
2022-03-29 17:43:01 +02:00
version = "1.0.90"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "704df27628939572cd88d33f171cd6f896f4eaca85252c6e0a72d8d8287ee86f"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"proc-macro2",
"quote",
"unicode-xid",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "tempfile"
2022-03-29 17:43:01 +02:00
version = "3.3.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2022-03-29 17:43:01 +02:00
"fastrand",
2021-10-11 12:22:08 +02:00
"libc",
2021-10-14 13:55:07 +02:00
"redox_syscall",
2021-10-11 12:22:08 +02:00
"remove_dir_all",
"winapi",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "term_size"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
dependencies = [
"libc",
"winapi",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "terminal_size"
version = "0.1.17"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"libc",
"winapi",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"term_size",
"unicode-width",
]
2021-10-12 14:51:49 +02:00
[[package]]
name = "textwrap"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "thiserror"
version = "1.0.30"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"thiserror-impl",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "thiserror-impl"
version = "1.0.30"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"proc-macro2",
"quote",
"syn",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "thread_local"
2022-03-29 17:43:01 +02:00
version = "1.1.4"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2021-10-12 11:47:00 +02:00
dependencies = [
"once_cell",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "time"
2021-10-12 11:47:00 +02:00
version = "0.1.43"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"libc",
"winapi",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "tinyvec"
2022-03-29 17:43:01 +02:00
version = "1.5.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"tinyvec_macros",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "tinyvec_macros"
version = "0.1.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2019-04-11 17:31:19 +02:00
[[package]]
name = "tokio"
2022-03-29 17:43:01 +02:00
version = "1.17.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"libc",
"memchr",
"mio",
2021-10-12 11:47:00 +02:00
"num_cpus",
2021-10-11 12:22:08 +02:00
"pin-project-lite",
2022-03-29 17:43:01 +02:00
"socket2",
2021-10-12 11:47:00 +02:00
"winapi",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "tokio-native-tls"
version = "0.3.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"native-tls",
"tokio",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "tokio-util"
2022-03-29 17:43:01 +02:00
version = "0.6.9"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "toml"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
"serde",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "tower-service"
version = "0.3.1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "tracing"
2022-03-29 17:43:01 +02:00
version = "0.1.32"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-11 12:22:08 +02:00
"pin-project-lite",
2021-10-12 11:47:00 +02:00
"tracing-attributes",
2021-10-11 12:22:08 +02:00
"tracing-core",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "tracing-attributes"
2022-03-29 17:43:01 +02:00
version = "0.1.20"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b"
2021-10-12 11:47:00 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "tracing-core"
2022-03-29 17:43:01 +02:00
version = "0.1.23"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "aa31669fa42c09c34d94d8165dd2012e8ff3c66aca50f3bb226b68f216f2706c"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"lazy_static",
2022-03-29 17:43:01 +02:00
"valuable",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-12 11:47:00 +02:00
name = "tracing-log"
version = "0.1.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-12 11:47:00 +02:00
name = "tracing-serde"
2022-03-29 17:43:01 +02:00
version = "0.1.3"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
dependencies = [
2022-03-29 17:43:01 +02:00
"ansi_term",
2021-10-12 11:47:00 +02:00
"chrono",
"lazy_static",
"matchers",
"regex",
"serde",
"serde_json",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
"tracing-serde",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2021-10-13 22:49:06 +02:00
[[package]]
name = "typenum"
2022-03-29 17:43:01 +02:00
version = "1.15.0"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-10-13 22:49:06 +02:00
2021-10-12 11:47:00 +02:00
[[package]]
name = "unicode-bidi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
2021-10-12 14:51:49 +02:00
[[package]]
name = "unicode-linebreak"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f"
dependencies = [
"regex",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "unicode-normalization"
version = "0.1.19"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"tinyvec",
2019-04-11 17:31:19 +02:00
]
2021-10-12 11:47:00 +02:00
[[package]]
name = "unicode-segmentation"
2022-03-29 17:43:01 +02:00
version = "1.9.0"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2021-10-12 11:47:00 +02:00
[[package]]
name = "unicode-width"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "unicode-xid"
2019-04-11 17:31:19 +02:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "url"
version = "2.2.2"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
2019-04-11 17:31:19 +02:00
]
2022-03-29 17:43:01 +02:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2021-10-13 22:49:06 +02:00
[[package]]
name = "value-bag"
version = "1.0.0-alpha.8"
2021-10-13 22:49:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79923f7731dc61ebfba3633098bf3ac533bbd35ccd8c57e7088d9a5eebe0263f"
2021-10-13 22:49:06 +02:00
dependencies = [
"ctor",
"version_check",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "vcpkg"
version = "0.2.15"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2019-04-11 17:31:19 +02:00
2021-10-12 11:47:00 +02:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2022-03-29 17:43:01 +02:00
version = "0.9.4"
2021-10-12 11:47:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-10-12 11:47:00 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"winapi-util",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "want"
version = "0.3.0"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"log",
"try-lock",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2019-04-11 17:31:19 +02:00
2022-03-29 17:43:01 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen"
2022-03-29 17:43:01 +02:00
version = "0.2.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-11 12:22:08 +02:00
"wasm-bindgen-macro",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen-backend"
2022-03-29 17:43:01 +02:00
version = "0.2.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen-futures"
2022-03-29 17:43:01 +02:00
version = "0.4.29"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-12 11:47:00 +02:00
"cfg-if",
2021-10-11 12:22:08 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen-macro"
2022-03-29 17:43:01 +02:00
version = "0.2.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"quote",
"wasm-bindgen-macro-support",
2019-04-11 17:31:19 +02:00
]
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen-macro-support"
2022-03-29 17:43:01 +02:00
version = "0.2.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
2021-10-11 12:22:08 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "wasm-bindgen-shared"
2022-03-29 17:43:01 +02:00
version = "0.2.79"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "web-sys"
2022-03-29 17:43:01 +02:00
version = "0.3.56"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"js-sys",
"wasm-bindgen",
2019-04-11 17:31:19 +02:00
]
2021-10-13 22:49:06 +02:00
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "winapi"
2021-10-12 11:47:00 +02:00
version = "0.3.9"
2019-04-11 17:31:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-12 11:47:00 +02:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-04-11 17:31:19 +02:00
dependencies = [
2021-10-11 12:22:08 +02:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-04-11 17:31:19 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-04-11 17:31:19 +02:00
2021-10-13 22:49:06 +02:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2019-04-11 17:31:19 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:22:08 +02:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-04-11 17:31:19 +02:00
[[package]]
2021-10-11 12:22:08 +02:00
name = "winreg"
2022-03-29 17:43:01 +02:00
version = "0.10.1"
2021-10-11 12:22:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-29 17:43:01 +02:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-10-11 12:22:08 +02:00
dependencies = [
"winapi",
]