udpt/Cargo.lock

997 lines
25 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
2023-12-05 13:44:06 +00:00
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "async-trait"
version = "0.1.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
]
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"
2023-12-05 13:44:06 +00:00
[[package]]
name = "axum"
version = "0.6.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
dependencies = [
"async-trait",
"axum-core",
"bitflags",
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"rustversion",
"serde",
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
"sync_wrapper",
"tokio",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
"rustversion",
"tower-layer",
"tower-service",
]
[[package]]
name = "backtrace"
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
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]]
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.2.16"
2018-10-21 23:25:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9"
2018-10-21 23:25:01 +01:00
dependencies = [
"atty",
"bitflags",
"clap_lex",
2023-12-05 13:45:12 +00:00
"indexmap",
"strsim",
"termcolor",
"textwrap",
2018-10-21 23:25:01 +01:00
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
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",
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-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-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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
[[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 = "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"
2023-12-05 13:44:06 +00:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
dependencies = [
2021-01-20 14:02:53 +00:00
"bytes",
2020-05-06 01:06:14 +01:00
"fnv",
2023-12-05 13:44:06 +00:00
"itoa",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "http-body"
2023-12-05 13:44:06 +00:00
version = "0.4.5"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
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"
2023-12-05 13:44:06 +00:00
version = "1.8.0"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
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"
2023-12-05 13:44:06 +00:00
version = "0.14.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
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",
"http",
"http-body",
"httparse",
2020-10-15 18:31:37 +01:00
"httpdate",
2023-12-05 13:44:06 +00:00
"itoa",
"pin-project-lite",
2023-12-05 13:44:06 +00:00
"socket2 0.4.10",
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",
2023-12-05 13:45:12 +00:00
"hashbrown",
2023-12-05 13:44:06 +00:00
]
[[package]]
name = "itoa"
2023-12-05 13:44:06 +00:00
version = "1.0.9"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2018-10-20 23:02:12 +01:00
[[package]]
name = "libc"
2023-12-05 13:44:06 +00:00
version = "0.2.150"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
2018-10-20 23:02:12 +01:00
[[package]]
name = "log"
2023-12-05 13:44:06 +00:00
version = "0.4.20"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
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"
2023-12-05 13:44:06 +00:00
[[package]]
name = "matchit"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
[[package]]
name = "maud"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0bab19cef8a7fe1c18a43e881793bfc9d4ea984befec3ae5bd0415abf3ecf00"
dependencies = [
"axum-core",
"http",
"itoa",
"maud_macros",
]
[[package]]
name = "maud_macros"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0be95d66c3024ffce639216058e5bae17a83ecaf266ffc6e4d060ad447c9eed2"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.86",
]
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
2023-12-05 13:44:06 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2018-10-20 23:02:12 +01:00
[[package]]
name = "mio"
2023-12-05 13:44:06 +00:00
version = "0.8.9"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
2018-10-20 23:02:12 +01:00
dependencies = [
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "object"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
dependencies = [
"memchr",
]
2020-05-13 20:59:29 +01:00
[[package]]
name = "once_cell"
2023-12-05 13:44:06 +00:00
version = "1.18.0"
2020-05-13 20:59:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2020-05-13 20:59:29 +01:00
[[package]]
name = "os_str_bytes"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
[[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",
2023-12-05 13:44:06 +00:00
"syn 1.0.86",
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "pin-project-lite"
2023-12-05 13:44:06 +00:00
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
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"
2023-12-05 13:44:06 +00:00
[[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 1.0.86",
"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",
]
2018-10-20 23:02:12 +01:00
[[package]]
2020-05-06 01:06:14 +01:00
name = "proc-macro2"
2023-12-05 13:44:06 +00:00
version = "1.0.70"
2018-10-20 23:02:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
2018-10-20 23:02:12 +01:00
dependencies = [
2023-12-05 13:44:06 +00:00
"unicode-ident",
2018-06-08 16:35:22 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "quote"
2023-12-05 13:44:06 +00:00
version = "1.0.33"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustversion"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
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
2018-06-08 16:35:22 +01:00
[[package]]
name = "serde"
2023-12-05 13:44:06 +00:00
version = "1.0.193"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
dependencies = [
"serde_derive",
]
2018-06-08 16:35:22 +01:00
[[package]]
name = "serde_derive"
2023-12-05 13:44:06 +00:00
version = "1.0.193"
2018-06-08 16:35:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
2018-06-08 16:35:22 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
"quote",
2023-12-05 13:44:06 +00:00
"syn 2.0.39",
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 = [
2023-12-05 13:44:06 +00:00
"itoa",
"ryu",
"serde",
2018-10-20 23:02:12 +01:00
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "serde_path_to_error"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335"
dependencies = [
"itoa",
"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",
2023-12-05 13:44:06 +00:00
"itoa",
2021-01-20 14:02:53 +00:00
"ryu",
"serde",
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",
]
[[package]]
name = "socket2"
2023-12-05 13:44:06 +00:00
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
dependencies = [
"libc",
2021-01-20 14:02:53 +00:00
"winapi",
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "socket2"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
dependencies = [
"libc",
"windows-sys",
]
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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "syn"
version = "2.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
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.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
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 0.10.0+wasi-snapshot-preview1",
2021-01-20 14:02:53 +00:00
"winapi",
2018-10-20 23:02:12 +01:00
]
[[package]]
name = "tokio"
2023-12-05 13:44:06 +00:00
version = "1.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
dependencies = [
2023-12-05 13:44:06 +00:00
"backtrace",
2021-01-20 14:02:53 +00:00
"bytes",
"libc",
2021-01-20 14:02:53 +00:00
"mio",
"num_cpus",
2020-05-06 01:06:14 +01:00
"pin-project-lite",
"signal-hook-registry",
2023-12-05 13:44:06 +00:00
"socket2 0.5.5",
2020-05-06 01:06:14 +01:00
"tokio-macros",
2023-12-05 13:44:06 +00:00
"windows-sys",
2018-10-20 23:02:12 +01:00
]
[[package]]
2020-05-06 01:06:14 +01:00
name = "tokio-macros"
2023-12-05 13:44:06 +00:00
version = "2.2.0"
2020-10-15 18:31:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2018-10-20 23:02:12 +01:00
dependencies = [
2020-05-06 01:06:14 +01:00
"proc-macro2",
"quote",
2023-12-05 13:44:06 +00:00
"syn 2.0.39",
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
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
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"
2023-12-05 13:44:06 +00:00
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"log",
2020-10-15 18:31:37 +01:00
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-12-05 13:44:06 +00:00
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
2023-12-05 13:44:06 +00:00
"once_cell",
]
[[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-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",
2023-12-05 13:44:06 +00:00
"axum",
"binascii",
"bincode",
2020-05-13 20:59:29 +01:00
"chrono",
"clap",
"fern",
"log",
2023-12-05 13:44:06 +00:00
"maud",
"serde",
"serde_json",
2021-01-20 14:02:53 +00:00
"tokio",
"toml",
2018-10-20 23:02:12 +01:00
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
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]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
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"
[[package]]
name = "windows-sys"
2023-12-05 13:44:06 +00:00
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-12-05 13:44:06 +00:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2023-12-05 13:44:06 +00:00
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2023-12-05 13:44:06 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_msvc"
2023-12-05 13:44:06 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_i686_gnu"
2023-12-05 13:44:06 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_msvc"
2023-12-05 13:44:06 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_x86_64_gnu"
2023-12-05 13:44:06 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_msvc"
2023-12-05 13:44:06 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-05 13:44:06 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"