udpt/Cargo.lock

915 lines
22 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2018-10-21 23:25:01 +01:00
2020-05-07 00:53:25 +01:00
[[package]]
name = "async-compression"
2022-01-29 18:12:59 +00:00
version = "0.3.12"
2020-05-07 00:53:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "f2bf394cfbbe876f0ac67b13b6ca819f9c9f2fb9ec67223cceb1555fbab1c31a"
2020-05-07 00:53:25 +01:00
dependencies = [
"bzip2",
"futures-core",
"memchr",
"pin-project-lite",
2021-01-20 14:02:53 +00:00
"tokio",
2020-05-07 00:53:25 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "atty"
version = "0.2.14"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2018-10-20 23:02:12 +01:00
dependencies = [
"hermit-abi",
"libc",
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "base64"
2021-01-20 14:02:53 +00:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 14:02:53 +00:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2018-10-20 23:02:12 +01:00
[[package]]
name = "binascii"
version = "0.1.4"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
2018-10-20 23:02:12 +01:00
2018-06-08 16:35:22 +01:00
[[package]]
name = "bincode"
version = "1.3.3"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
2018-06-08 16:35:22 +01:00
dependencies = [
"serde",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "bitflags"
version = "1.3.2"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "block-buffer"
version = "0.9.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"generic-array",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2020-05-07 00:53:25 +01:00
[[package]]
name = "bzip2"
version = "0.4.3"
2020-05-07 00:53:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
2020-05-07 00:53:25 +01:00
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
2020-05-07 00:53:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
2020-05-07 00:53:25 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
2020-05-07 00:53:25 +01:00
]
[[package]]
name = "cc"
version = "1.0.72"
2020-05-07 00:53:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
2018-10-20 23:02:12 +01:00
2021-01-20 14:02:53 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-05-13 20:59:29 +01:00
[[package]]
name = "chrono"
2020-10-15 18:31:37 +01:00
version = "0.4.19"
2020-05-13 20:59:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-15 18:31:37 +01:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-05-13 20:59:29 +01:00
dependencies = [
2020-10-15 18:31:37 +01:00
"libc",
2020-05-13 20:59:29 +01:00
"num-integer",
"num-traits",
"time",
2021-01-20 14:02:53 +00:00
"winapi",
2020-05-13 20:59:29 +01:00
]
2018-10-21 23:25:01 +01:00
[[package]]
name = "clap"
version = "3.1.0"
2018-10-21 23:25:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5f1fea81f183005ced9e59cdb01737ef2423956dac5a6d731b06b2ecfaa3467"
2018-10-21 23:25:01 +01:00
dependencies = [
"atty",
"bitflags",
"indexmap",
"os_str_bytes",
"strsim",
"termcolor",
"textwrap",
2018-10-21 23:25:01 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "cpufeatures"
version = "0.2.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2018-10-20 23:02:12 +01:00
dependencies = [
"libc",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "digest"
version = "0.9.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "fern"
version = "0.6.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bdd7b0849075e79ee9a1836df22c717d1eba30451796fdc631b04565dd11e2a"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"log",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "fnv"
version = "1.0.7"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-10-20 23:02:12 +01:00
[[package]]
2021-01-20 14:02:53 +00:00
name = "form_urlencoded"
version = "1.0.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2018-10-20 23:02:12 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"matches",
"percent-encoding",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "futures-channel"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
dependencies = [
2020-05-06 01:06:14 +01:00
"futures-core",
"futures-sink",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "futures-core"
version = "0.3.19"
2020-05-07 00:53:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
2020-05-07 00:53:25 +01:00
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "futures-sink"
version = "0.3.19"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "futures-task"
version = "0.3.19"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "futures-util"
version = "0.3.19"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"futures-core",
"futures-sink",
"futures-task",
2021-01-20 14:02:53 +00:00
"pin-project-lite",
2020-05-06 01:06:14 +01:00
"pin-utils",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "generic-array"
version = "0.14.5"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"typenum",
"version_check",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "h2"
2022-01-29 18:12:59 +00:00
version = "0.3.11"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "d9f1f717ddc7b2ba36df7e871fd88db79326551d3d6f1fc406fbfd28b582ff8e"
2018-10-20 23:02:12 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-01-20 14:02:53 +00:00
"tokio",
"tokio-util",
"tracing",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "headers"
2022-01-29 18:12:59 +00:00
version = "0.3.6"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "c84c647447a07ca16f5fbd05b633e535cc41a08d2d74ab1e08648df53be9cb89"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"base64",
"bitflags",
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"headers-core",
"http",
"httpdate",
2020-05-06 01:06:14 +01:00
"mime",
"sha-1",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "headers-core"
version = "0.2.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-06 01:06:14 +01:00
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"http",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "hermit-abi"
version = "0.1.19"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"libc",
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "http"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"fnv",
"itoa 1.0.1",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "http-body"
version = "0.4.4"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2018-10-20 23:02:12 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"http",
"pin-project-lite",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "httparse"
version = "1.5.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2020-10-15 18:31:37 +01:00
[[package]]
name = "httpdate"
version = "1.0.2"
2020-10-15 18:31:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2020-10-15 18:31:37 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "hyper"
version = "0.14.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7ec3e62bdc98a2f0393a5048e4c30ef659440ea6e0e572965103e72bd836f55"
2020-05-06 01:06:14 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
2020-10-15 18:31:37 +01:00
"httpdate",
"itoa 0.4.8",
"pin-project-lite",
"socket2",
2021-01-20 14:02:53 +00:00
"tokio",
2020-05-06 01:06:14 +01:00
"tower-service",
"tracing",
2020-05-06 01:06:14 +01:00
"want",
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "indexmap"
version = "1.8.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
dependencies = [
2020-05-06 01:06:14 +01:00
"autocfg",
"hashbrown",
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "itoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "itoa"
version = "1.0.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2018-10-20 23:02:12 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-10-20 23:02:12 +01:00
[[package]]
name = "libc"
2022-01-29 18:12:59 +00:00
version = "0.2.116"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "565dbd88872dbe4cc8a46e527f26483c1d1f7afa6b884a3bd6cd893d4f98da74"
2018-10-20 23:02:12 +01:00
[[package]]
name = "log"
version = "0.4.14"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2018-10-20 23:02:12 +01:00
dependencies = [
"cfg-if",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "matches"
version = "0.1.9"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2018-10-20 23:02:12 +01:00
[[package]]
name = "memchr"
version = "2.4.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2018-10-20 23:02:12 +01:00
[[package]]
name = "mime"
version = "0.3.16"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-10-20 23:02:12 +01:00
[[package]]
name = "mime_guess"
version = "2.0.3"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
2018-10-20 23:02:12 +01:00
dependencies = [
"mime",
"unicase",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "mio"
version = "0.8.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2"
2018-10-20 23:02:12 +01:00
dependencies = [
"libc",
"log",
2021-01-20 14:02:53 +00:00
"miow",
2020-10-15 18:31:37 +01:00
"ntapi",
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "miow"
version = "0.3.7"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-10-15 18:31:37 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
2020-10-15 18:31:37 +01:00
[[package]]
name = "ntapi"
2021-01-20 14:02:53 +00:00
version = "0.3.6"
2020-10-15 18:31:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 14:02:53 +00:00
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
2020-10-15 18:31:37 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"winapi",
2020-10-15 18:31:37 +01:00
]
2020-05-13 20:59:29 +01:00
[[package]]
name = "num-integer"
2021-01-20 14:02:53 +00:00
version = "0.1.44"
2020-05-13 20:59:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 14:02:53 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-05-13 20:59:29 +01:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
2021-01-20 14:02:53 +00:00
version = "0.2.14"
2020-05-13 20:59:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 14:02:53 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-05-13 20:59:29 +01:00
dependencies = [
"autocfg",
]
2018-10-20 23:02:12 +01:00
[[package]]
2019-01-17 22:41:31 +00:00
name = "num_cpus"
version = "1.13.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2018-10-20 23:02:12 +01:00
dependencies = [
"hermit-abi",
"libc",
2018-10-20 23:02:12 +01:00
]
2020-05-13 20:59:29 +01:00
[[package]]
name = "once_cell"
version = "1.9.0"
2020-05-13 20:59:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2020-05-13 20:59:29 +01:00
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "opaque-debug"
version = "0.3.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2018-10-20 23:02:12 +01:00
[[package]]
name = "os_str_bytes"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
dependencies = [
"memchr",
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "pin-project-lite"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "pin-utils"
version = "0.1.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-06 01:06:14 +01:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2018-10-20 23:02:12 +01:00
[[package]]
name = "pkg-config"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "proc-macro2"
version = "1.0.36"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"unicode-xid",
2018-06-08 16:35:22 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "quote"
2022-01-29 18:12:59 +00:00
version = "1.0.15"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
2018-06-08 16:35:22 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
2018-06-08 16:35:22 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "ryu"
version = "1.0.9"
2020-05-06 01:06:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2020-05-06 01:06:14 +01:00
[[package]]
name = "scoped-tls"
version = "1.0.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-06 01:06:14 +01:00
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2018-10-20 23:02:12 +01:00
2018-06-08 16:35:22 +01:00
[[package]]
name = "serde"
2022-01-29 18:12:59 +00:00
version = "1.0.136"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
dependencies = [
"serde_derive",
]
2018-06-08 16:35:22 +01:00
[[package]]
name = "serde_derive"
2022-01-29 18:12:59 +00:00
version = "1.0.136"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2018-06-08 16:35:22 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
"quote",
"syn",
2018-06-08 16:35:22 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "serde_json"
2022-01-29 18:12:59 +00:00
version = "1.0.78"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
2018-10-20 23:02:12 +01:00
dependencies = [
"itoa 1.0.1",
"ryu",
"serde",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "serde_urlencoded"
2022-01-29 18:12:59 +00:00
version = "0.7.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2018-10-20 23:02:12 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"form_urlencoded",
2022-01-29 18:12:59 +00:00
"itoa 1.0.1",
2021-01-20 14:02:53 +00:00
"ryu",
"serde",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "sha-1"
version = "0.9.8"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
2020-05-06 01:06:14 +01:00
dependencies = [
"block-buffer",
"cfg-if",
"cpufeatures",
2020-05-06 01:06:14 +01:00
"digest",
"opaque-debug",
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "slab"
version = "0.4.5"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2018-10-20 23:02:12 +01:00
[[package]]
name = "socket2"
2022-01-29 18:12:59 +00:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
2021-01-20 14:02:53 +00:00
"winapi",
]
2018-10-21 23:25:01 +01:00
[[package]]
name = "strsim"
version = "0.10.0"
2018-10-21 23:25:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2018-10-21 23:25:01 +01:00
2018-10-20 23:02:12 +01:00
[[package]]
name = "syn"
2022-01-29 18:12:59 +00:00
version = "1.0.86"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 18:12:59 +00:00
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
"quote",
"unicode-xid",
2018-10-21 23:25:01 +01:00
]
[[package]]
name = "termcolor"
version = "1.1.2"
2018-10-21 23:25:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2018-10-21 23:25:01 +01:00
dependencies = [
"winapi-util",
2018-10-21 23:25:01 +01:00
]
[[package]]
name = "textwrap"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
2018-10-20 23:02:12 +01:00
[[package]]
name = "time"
version = "0.1.44"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2018-10-20 23:02:12 +01:00
dependencies = [
"libc",
"wasi",
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "tokio"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
"libc",
2020-05-06 01:06:14 +01:00
"memchr",
2021-01-20 14:02:53 +00:00
"mio",
"num_cpus",
2021-01-20 14:02:53 +00:00
"once_cell",
2020-05-06 01:06:14 +01:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
2020-05-06 01:06:14 +01:00
"tokio-macros",
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "tokio-macros"
version = "1.7.0"
2020-10-15 18:31:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
"quote",
"syn",
2018-10-20 23:02:12 +01:00
]
[[package]]
2021-01-20 14:02:53 +00:00
name = "tokio-stream"
version = "0.1.8"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
dependencies = [
"futures-core",
"pin-project-lite",
2021-01-20 14:02:53 +00:00
"tokio",
]
[[package]]
name = "tokio-util"
version = "0.6.9"
2020-10-15 18:31:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
2018-10-20 23:02:12 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"futures-core",
"futures-sink",
"log",
2020-05-06 01:06:14 +01:00
"pin-project-lite",
2021-01-20 14:02:53 +00:00
"tokio",
2018-10-20 23:02:12 +01:00
]
2018-10-21 21:39:39 +01:00
[[package]]
name = "toml"
2021-01-20 14:02:53 +00:00
version = "0.5.8"
2018-10-21 21:39:39 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-20 14:02:53 +00:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
2018-10-21 21:39:39 +01:00
dependencies = [
"serde",
2018-10-21 21:39:39 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "tower-service"
version = "0.3.1"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2018-10-20 23:02:12 +01:00
[[package]]
name = "tracing"
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
dependencies = [
"cfg-if",
"log",
2020-10-15 18:31:37 +01:00
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
dependencies = [
"lazy_static",
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "typenum"
version = "1.15.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2018-10-20 23:02:12 +01:00
2018-06-08 16:35:22 +01:00
[[package]]
name = "udpt-rs"
version = "3.1.2"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-07 00:53:25 +01:00
"async-compression",
"binascii",
"bincode",
2020-05-13 20:59:29 +01:00
"chrono",
"clap",
"fern",
"log",
"serde",
"serde_json",
2021-01-20 14:02:53 +00:00
"tokio",
"toml",
2020-05-06 01:06:14 +01:00
"warp",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "unicase"
version = "2.6.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"version_check",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "unicode-xid"
version = "0.2.2"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2018-10-21 23:25:01 +01:00
2018-10-20 23:02:12 +01:00
[[package]]
name = "version_check"
version = "0.9.4"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "want"
version = "0.3.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-06 01:06:14 +01:00
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "warp"
version = "0.3.2"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cef4e1e9114a4b7f1ac799f16ce71c14de5778500c5450ec6b7b920c55b587e"
2020-05-06 01:06:14 +01:00
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
"futures-channel",
"futures-util",
2020-05-06 01:06:14 +01:00
"headers",
"http",
"hyper",
"log",
"mime",
"mime_guess",
2021-01-20 14:02:53 +00:00
"percent-encoding",
"pin-project",
2020-05-06 01:06:14 +01:00
"scoped-tls",
"serde",
"serde_json",
"serde_urlencoded",
2021-01-20 14:02:53 +00:00
"tokio",
"tokio-stream",
"tokio-util",
2020-05-06 01:06:14 +01:00
"tower-service",
"tracing",
2020-05-06 01:06:14 +01:00
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2018-10-20 23:02:12 +01:00
[[package]]
name = "winapi"
version = "0.3.9"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-10-20 23:02:12 +01:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-10-20 23:02:12 +01:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2018-10-20 23:02:12 +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"