kitchen-freezer/Cargo.lock

1320 lines
32 KiB
Text
Raw Normal View History

2021-02-18 12:02:04 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2022-01-19 09:22:05 +01:00
version = 3
2021-02-21 00:16:40 +01:00
[[package]]
name = "aho-corasick"
2021-11-24 00:23:16 +01:00
version = "0.7.18"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2021-02-21 00:16:40 +01:00
dependencies = [
"memchr",
]
2021-02-25 00:50:49 +01:00
[[package]]
name = "async-trait"
2022-01-19 09:22:05 +01:00
version = "0.1.52"
2021-02-25 00:50:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
2021-02-25 00:50:49 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-21 00:16:40 +01: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",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-11-24 00:23:16 +01:00
version = "1.3.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-02-20 00:10:05 +01:00
[[package]]
name = "bumpalo"
2022-01-19 09:22:05 +01:00
version = "3.9.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2021-02-20 00:10:05 +01:00
[[package]]
name = "bytes"
2021-11-24 00:23:16 +01:00
version = "1.1.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-02-20 00:10:05 +01:00
[[package]]
name = "cc"
2021-11-24 00:23:16 +01:00
version = "1.0.72"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
2021-02-20 00:10:05 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"serde",
"time",
"winapi",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "core-foundation"
2021-11-24 00:23:16 +01:00
version = "0.9.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"
2021-02-20 00:10:05 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2021-11-24 00:23:16 +01:00
version = "0.8.3"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2021-02-20 00:10:05 +01:00
2021-07-08 15:57:45 +02:00
[[package]]
name = "csscolorparser"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2fb3bd93ef32553e3d5b9f8020028f41ac64ff8a230033d5d548b8222d21fbe"
dependencies = [
"phf",
"serde",
]
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2021-02-20 00:10:05 +01:00
[[package]]
name = "encoding_rs"
2022-01-19 09:22:05 +01:00
version = "0.8.30"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
]
2021-02-21 00:16:40 +01:00
[[package]]
name = "env_logger"
2021-11-24 00:22:53 +01:00
version = "0.9.0"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:22:53 +01:00
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
2021-02-21 00:16:40 +01:00
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
2022-01-19 09:22:05 +01:00
[[package]]
name = "fastrand"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2"
dependencies = [
"instant",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
2021-11-24 00:23:16 +01:00
version = "1.0.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2021-02-20 00:10:05 +01:00
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures-channel"
2022-01-19 09:22:05 +01:00
version = "0.3.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
2021-02-20 00:10:05 +01:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2022-01-19 09:22:05 +01:00
version = "0.3.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
2021-02-20 00:10:05 +01:00
[[package]]
name = "futures-sink"
2022-01-19 09:22:05 +01:00
version = "0.3.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
2021-02-20 00:10:05 +01:00
[[package]]
name = "futures-task"
2022-01-19 09:22:05 +01:00
version = "0.3.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
2021-02-20 00:10:05 +01:00
[[package]]
name = "futures-util"
2022-01-19 09:22:05 +01:00
version = "0.3.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
2021-02-20 00:10:05 +01:00
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
2021-07-08 15:57:45 +02:00
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "getrandom"
2022-01-19 09:22:05 +01:00
version = "0.2.4"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
"libc",
2022-01-19 09:22:05 +01:00
"wasi 0.10.3+wasi-snapshot-preview1",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "h2"
2022-01-19 09:22:05 +01:00
version = "0.3.10"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2021-11-24 00:23:16 +01:00
version = "0.11.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-02-20 00:10:05 +01:00
2021-02-21 00:16:40 +01:00
[[package]]
name = "hermit-abi"
2021-11-24 00:23:16 +01:00
version = "0.1.19"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-02-21 00:16:40 +01:00
dependencies = [
"libc",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "http"
2022-01-19 09:22:05 +01:00
version = "0.2.6"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"fnv",
2022-01-19 09:22:05 +01:00
"itoa 1.0.1",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "http-body"
2021-11-24 00:23:16 +01:00
version = "0.4.4"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"http",
2021-11-24 00:23:16 +01:00
"pin-project-lite",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "httparse"
2021-11-24 00:23:16 +01:00
version = "1.5.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2021-02-20 00:10:05 +01:00
[[package]]
name = "httpdate"
2021-11-24 00:23:16 +01:00
version = "1.0.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-02-20 00:10:05 +01:00
2021-02-21 00:16:40 +01:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-02-20 00:10:05 +01:00
[[package]]
name = "hyper"
2022-01-19 09:22:05 +01:00
version = "0.14.16"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-01-19 09:22:05 +01:00
"itoa 0.4.8",
2021-11-24 00:23:16 +01:00
"pin-project-lite",
2021-02-20 00:10:05 +01:00
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2021-03-29 09:31:22 +02:00
[[package]]
2021-12-06 22:59:29 +01:00
name = "ical-daladim"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357f6790b3c1362b45f94cd7efcb4d8e519a07075b4fc5f1899c87eeb120105"
2021-03-29 09:31:22 +02:00
dependencies = [
2021-11-10 22:16:11 +01:00
"serde",
2021-03-29 09:31:22 +02:00
"thiserror",
]
2021-04-12 09:23:37 +02:00
[[package]]
name = "ics"
2021-11-24 00:23:16 +01:00
version = "0.5.7"
2021-04-12 09:23:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "b891481ef6353e3b97118d4650469e379a39e4373a66908c12f99763182826b1"
2021-04-12 09:23:37 +02:00
2021-02-20 00:10:05 +01:00
[[package]]
name = "idna"
2021-11-24 00:23:16 +01:00
version = "0.2.3"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2021-02-20 00:10:05 +01:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2022-01-19 09:22:05 +01:00
version = "1.8.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
2021-02-20 00:10:05 +01:00
dependencies = [
"autocfg",
"hashbrown",
]
2022-01-19 09:22:05 +01:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "ipnet"
2021-11-24 00:23:16 +01:00
version = "2.3.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
2021-02-20 00:10:05 +01:00
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "itoa"
2021-11-24 00:23:16 +01:00
version = "0.4.8"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-02-20 00:10:05 +01:00
2022-01-19 09:22:05 +01:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2021-02-20 00:10:05 +01:00
[[package]]
name = "js-sys"
2021-11-24 00:23:16 +01:00
version = "0.3.55"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
2021-02-20 00:10:05 +01:00
dependencies = [
"wasm-bindgen",
]
2021-04-28 23:46:11 +02:00
[[package]]
name = "kitchen-fridge"
2022-01-19 09:22:05 +01:00
version = "0.4.0"
2021-04-28 23:46:11 +02:00
dependencies = [
"async-trait",
"bitflags",
"chrono",
2021-07-08 15:57:45 +02:00
"csscolorparser",
2021-04-28 23:46:11 +02:00
"env_logger",
2021-12-06 22:59:29 +01:00
"ical-daladim",
2021-04-28 23:46:11 +02:00
"ics",
"itertools",
2021-04-28 23:46:11 +02:00
"log",
"minidom",
"once_cell",
2021-04-28 23:46:11 +02:00
"reqwest",
"sanitize-filename",
"serde",
"serde_json",
"tokio",
"url",
"uuid",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-01-19 09:22:05 +01:00
version = "0.2.112"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
2021-02-20 00:10:05 +01:00
[[package]]
name = "log"
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
dependencies = [
"cfg-if",
]
[[package]]
name = "matches"
2021-11-24 00:23:16 +01:00
version = "0.1.9"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2021-02-20 00:10:05 +01:00
[[package]]
name = "memchr"
2021-11-24 00:23:16 +01:00
version = "2.4.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2021-02-20 00:10:05 +01:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "minidom"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "332592c2149fc7dd40a64fc9ef6f0d65607284b474cef9817d1fc8c7e7b3608e"
dependencies = [
"quick-xml",
]
[[package]]
name = "mio"
2021-11-24 00:23:16 +01:00
version = "0.7.14"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2021-02-20 00:10:05 +01:00
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
[[package]]
name = "miow"
2021-11-24 00:23:16 +01:00
version = "0.3.7"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2021-02-20 00:10:05 +01:00
dependencies = [
"winapi",
]
[[package]]
name = "native-tls"
2021-11-24 00:23:16 +01:00
version = "0.2.8"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
2021-02-20 00:10:05 +01:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
2021-02-25 00:50:49 +01:00
[[package]]
name = "num_cpus"
2022-01-19 09:22:05 +01:00
version = "1.13.1"
2021-02-25 00:50:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-02-25 00:50:49 +01:00
dependencies = [
"hermit-abi",
"libc",
]
2021-02-21 00:16:40 +01:00
[[package]]
name = "once_cell"
2022-01-19 09:22:05 +01:00
version = "1.9.0"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2021-02-21 00:16:40 +01:00
2021-02-20 00:10:05 +01:00
[[package]]
name = "openssl"
2021-11-24 00:23:16 +01:00
version = "0.10.38"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
2021-02-20 00:10:05 +01:00
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
2021-11-24 00:23:16 +01:00
"once_cell",
2021-02-20 00:10:05 +01:00
"openssl-sys",
]
[[package]]
name = "openssl-probe"
2022-01-19 09:22:05 +01:00
version = "0.1.5"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-02-20 00:10:05 +01:00
[[package]]
name = "openssl-sys"
2022-01-19 09:22:05 +01:00
version = "0.9.72"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
2021-02-20 00:10:05 +01:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-07-08 15:57:45 +02:00
[[package]]
name = "phf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
"phf_macros",
"phf_shared",
"proc-macro-hack",
]
[[package]]
name = "phf_generator"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
dependencies = [
"phf_shared",
2022-01-19 09:22:05 +01:00
"rand",
2021-07-08 15:57:45 +02:00
]
[[package]]
name = "phf_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "phf_shared"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
dependencies = [
"siphasher",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "pin-project-lite"
2022-01-19 09:22:05 +01:00
version = "0.2.8"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2021-02-20 00:10:05 +01:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2022-01-19 09:22:05 +01:00
version = "0.3.24"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
2021-02-20 00:10:05 +01:00
[[package]]
name = "ppv-lite86"
2022-01-19 09:22:05 +01:00
version = "0.2.16"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-02-20 00:10:05 +01:00
2021-07-08 15:57:45 +02:00
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2021-02-20 00:10:05 +01:00
[[package]]
name = "proc-macro2"
2022-01-19 09:22:05 +01:00
version = "1.0.36"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2021-02-20 00:10:05 +01:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quick-xml"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26aab6b48e2590e4a64d1ed808749ba06257882b461d01ca71baeb747074a6dd"
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2022-01-19 09:22:05 +01:00
version = "1.0.14"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d"
2021-02-20 00:10:05 +01:00
dependencies = [
"proc-macro2",
]
2021-07-08 15:57:45 +02:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
2022-01-19 09:22:05 +01:00
"rand_chacha",
"rand_core",
"rand_hc",
2021-07-08 15:57:45 +02:00
"rand_pcg",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2022-01-19 09:22:05 +01:00
"rand_core",
2021-07-08 15:57:45 +02:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
2021-02-20 00:10:05 +01:00
]
2021-07-08 15:57:45 +02:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2022-01-19 09:22:05 +01:00
"rand_core",
2021-07-08 15:57:45 +02:00
]
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
2022-01-19 09:22:05 +01:00
"rand_core",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "redox_syscall"
2021-11-24 00:23:16 +01:00
version = "0.2.10"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-02-20 00:10:05 +01:00
dependencies = [
"bitflags",
]
2021-02-21 00:16:40 +01:00
[[package]]
name = "regex"
2021-11-24 00:23:16 +01:00
version = "1.5.4"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2021-02-21 00:16:40 +01:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-11-24 00:23:16 +01:00
version = "0.6.25"
2021-02-21 00:16:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2021-02-21 00:16:40 +01:00
2021-02-20 00:10:05 +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 = "reqwest"
2022-01-19 09:22:05 +01:00
version = "0.11.9"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525"
2021-02-20 00:10:05 +01:00
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
2022-01-19 09:22:05 +01:00
"h2",
2021-02-20 00:10:05 +01:00
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
"pin-project-lite",
"serde",
2021-11-24 00:23:16 +01:00
"serde_json",
2021-02-20 00:10:05 +01:00
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
[[package]]
name = "ryu"
2022-01-19 09:22:05 +01:00
version = "1.0.9"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2021-02-20 00:10:05 +01:00
2021-03-21 00:11:35 +01:00
[[package]]
name = "sanitize-filename"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf18934a12018228c5b55a6dae9df5d0641e3566b3630cb46cc55564068e7c2f"
dependencies = [
"lazy_static",
"regex",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "schannel"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
"lazy_static",
"winapi",
]
[[package]]
name = "security-framework"
2022-01-19 09:22:05 +01:00
version = "2.5.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "d09d3c15d814eda1d6a836f2f2b56a6abc1446c8a34351cb3180d3db92ffe4ce"
2021-02-20 00:10:05 +01:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2022-01-19 09:22:05 +01:00
version = "2.5.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "e90dd10c41c6bfc633da6e0c659bd25d31e0791e5974ac42970267d59eba87f7"
2021-02-20 00:10:05 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "serde"
2022-01-19 09:22:05 +01:00
version = "1.0.133"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a"
2021-02-25 00:50:49 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-01-19 09:22:05 +01:00
version = "1.0.133"
2021-02-25 00:50:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537"
2021-02-25 00:50:49 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "serde_json"
2022-01-19 09:22:05 +01:00
version = "1.0.75"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "c059c05b48c5c0067d4b4b2b4f0732dd65feb52daf7e0ea09cd87e7dadc1af79"
2021-02-20 00:10:05 +01:00
dependencies = [
2022-01-19 09:22:05 +01:00
"itoa 1.0.1",
2021-02-20 00:10:05 +01:00
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2022-01-19 09:22:05 +01:00
version = "0.7.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-02-20 00:10:05 +01:00
dependencies = [
"form_urlencoded",
2022-01-19 09:22:05 +01:00
"itoa 1.0.1",
2021-02-20 00:10:05 +01:00
"ryu",
"serde",
]
2021-07-08 15:57:45 +02:00
[[package]]
name = "siphasher"
2022-01-19 09:22:05 +01:00
version = "0.3.9"
2021-07-08 15:57:45 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "a86232ab60fa71287d7f2ddae4a7073f6b7aac33631c3015abb556f08c6d0a3e"
2021-07-08 15:57:45 +02:00
2021-02-20 00:10:05 +01:00
[[package]]
name = "slab"
2021-11-24 00:23:16 +01:00
version = "0.4.5"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2021-02-20 00:10:05 +01:00
[[package]]
name = "socket2"
2021-11-24 00:23:16 +01:00
version = "0.4.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
2021-02-20 00:10:05 +01:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "syn"
2022-01-19 09:22:05 +01:00
version = "1.0.85"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7"
2021-02-20 00:10:05 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tempfile"
2022-01-19 09:22:05 +01:00
version = "3.3.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
2022-01-19 09:22:05 +01:00
"fastrand",
2021-02-20 00:10:05 +01:00
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2021-02-21 00:16:40 +01:00
[[package]]
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
2021-03-29 09:31:22 +02:00
[[package]]
name = "thiserror"
2021-11-24 00:23:16 +01:00
version = "1.0.30"
2021-03-29 09:31:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2021-03-29 09:31:22 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-11-24 00:23:16 +01:00
version = "1.0.30"
2021-03-29 09:31:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2021-03-29 09:31:22 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "time"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
dependencies = [
"libc",
"winapi",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "tinyvec"
2021-11-24 00:23:16 +01:00
version = "1.5.1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
2021-02-20 00:10:05 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-01-19 09:22:05 +01:00
version = "1.15.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"libc",
"memchr",
"mio",
2021-02-25 00:50:49 +01:00
"num_cpus",
2021-02-20 00:10:05 +01:00
"pin-project-lite",
"tokio-macros",
2021-11-24 00:23:16 +01:00
"winapi",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "tokio-macros"
2022-01-19 09:22:05 +01:00
version = "1.7.0"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2021-02-20 00:10:05 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-util"
2021-11-24 00:23:16 +01:00
version = "0.6.9"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
2021-02-20 00:10:05 +01:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]]
name = "tracing"
2021-11-24 00:23:16 +01:00
version = "0.1.29"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2021-11-24 00:23:16 +01:00
version = "0.1.21"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
2021-02-20 00:10:05 +01:00
dependencies = [
"lazy_static",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "unicode-bidi"
2021-11-24 00:23:16 +01:00
version = "0.3.7"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
2021-02-20 00:10:05 +01:00
[[package]]
name = "unicode-normalization"
2021-11-24 00:23:16 +01:00
version = "0.1.19"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2021-02-20 00:10:05 +01:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-xid"
2021-11-24 00:23:16 +01:00
version = "0.2.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2021-02-20 00:10:05 +01:00
[[package]]
name = "url"
2021-11-24 00:23:16 +01:00
version = "2.2.2"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2021-02-20 00:10:05 +01:00
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
2021-02-25 00:50:49 +01:00
"serde",
]
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2022-01-19 09:22:05 +01:00
"getrandom 0.2.4",
2021-02-20 00:10:05 +01:00
]
[[package]]
name = "vcpkg"
2021-11-24 00:23:16 +01:00
version = "0.2.15"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-02-20 00:10:05 +01:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2021-07-08 15:57:45 +02:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-02-20 00:10:05 +01:00
[[package]]
name = "wasi"
2022-01-19 09:22:05 +01:00
version = "0.10.3+wasi-snapshot-preview1"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 09:22:05 +01:00
checksum = "46a2e384a3f170b0c7543787a91411175b71afd56ba4d3a0ae5678d4e2243c0e"
2021-02-20 00:10:05 +01:00
[[package]]
name = "wasm-bindgen"
2021-11-24 00:23:16 +01:00
version = "0.2.78"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-11-24 00:23:16 +01:00
version = "0.2.78"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
2021-02-20 00:10:05 +01:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2021-11-24 00:23:16 +01:00
version = "0.4.28"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"
2021-02-20 00:10:05 +01:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2021-11-24 00:23:16 +01:00
version = "0.2.78"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
2021-02-20 00:10:05 +01:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-11-24 00:23:16 +01:00
version = "0.2.78"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
2021-02-20 00:10:05 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-11-24 00:23:16 +01:00
version = "0.2.78"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
2021-02-20 00:10:05 +01:00
[[package]]
name = "web-sys"
2021-11-24 00:23:16 +01:00
version = "0.3.55"
2021-02-20 00:10:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-24 00:23:16 +01:00
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
2021-02-20 00:10:05 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[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"
2021-02-21 00:16:40 +01:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2021-02-20 00:10:05 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "winreg"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
dependencies = [
"winapi",
]