2020-08-28 10:08:28 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2022-05-30 18:37:21 +02:00
version = 3
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "addr2line"
2024-10-11 10:22:05 +02:00
version = "0.24.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2023-11-15 11:52:11 +01:00
dependencies = [
"gimli",
]
2020-08-28 10:08:28 +02:00
2022-06-02 11:41:45 +02:00
[[package]]
2024-10-11 10:22:05 +02:00
name = "adler2"
version = "2.0.0"
2022-06-02 11:41:45 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2022-06-02 11:41:45 +02:00
2020-08-28 10:08:28 +02:00
[[package]]
2024-10-11 10:22:05 +02:00
name = "arrayvec"
version = "0.7.6"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
2022-05-30 20:43:18 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"serde",
2022-05-30 20:43:18 +02:00
]
2020-08-28 10:08:28 +02:00
[[package]]
2024-10-11 10:22:05 +02:00
name = "async-trait"
version = "0.1.83"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
2022-05-30 20:43:18 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"proc-macro2",
"quote",
"syn",
2022-05-30 20:43:18 +02:00
]
[[package]]
name = "autocfg"
2024-10-11 10:22:05 +02:00
version = "1.4.0"
2022-05-30 20:43:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2020-08-28 10:08:28 +02:00
2023-11-15 11:52:11 +01:00
[[package]]
name = "backtrace"
2024-10-11 10:22:05 +02:00
version = "0.3.74"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2023-11-15 11:52:11 +01:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2024-10-11 10:22:05 +02:00
"windows-targets 0.52.6",
2023-11-15 11:52:11 +01:00
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "base64"
2024-10-11 10:22:05 +02:00
version = "0.21.7"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2020-08-28 10:08:28 +02:00
2022-05-30 20:43:18 +02:00
[[package]]
name = "base64"
2024-10-11 10:22:05 +02:00
version = "0.22.1"
2022-05-30 20:43:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2022-05-30 20:43:18 +02:00
2020-08-28 10:08:28 +02:00
[[package]]
name = "basedbot"
version = "0.1.0"
dependencies = [
2022-05-30 20:43:18 +02:00
"async-trait",
2020-08-28 10:08:28 +02:00
"serenity",
2022-05-30 20:43:18 +02:00
"tokio",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "bitflags"
2022-05-30 20:43:18 +02:00
version = "1.3.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-30 20:43:18 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-08-28 10:08:28 +02:00
2024-10-11 10:22:05 +02:00
[[package]]
name = "bitflags"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2020-08-28 10:08:28 +02:00
[[package]]
name = "block-buffer"
2023-11-15 11:52:11 +01:00
version = "0.10.4"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2020-08-28 10:08:28 +02:00
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2024-10-11 10:22:05 +02:00
version = "3.16.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2020-08-28 10:08:28 +02:00
[[package]]
name = "byteorder"
2023-11-15 11:52:11 +01:00
version = "1.5.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2020-08-28 10:08:28 +02:00
2022-05-30 20:43:18 +02:00
[[package]]
name = "bytes"
2024-10-11 10:22:05 +02:00
version = "1.7.2"
2022-05-30 20:43:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
2022-05-30 20:43:18 +02:00
2020-08-28 10:08:28 +02:00
[[package]]
name = "cc"
2024-10-11 10:22:05 +02:00
version = "1.1.28"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1"
2023-11-15 11:52:11 +01:00
dependencies = [
2024-10-11 10:22:05 +02:00
"shlex",
2023-11-15 11:52:11 +01:00
]
2020-08-28 10:08:28 +02:00
2022-05-30 20:43:18 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "core-foundation"
2024-10-11 10:22:05 +02:00
version = "0.9.4"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"core-foundation-sys",
"libc",
2020-08-28 10:08:28 +02:00
]
2023-11-15 11:52:11 +01:00
[[package]]
name = "core-foundation-sys"
2024-10-11 10:22:05 +02:00
version = "0.8.7"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2023-11-15 11:52:11 +01:00
2020-08-28 10:08:28 +02:00
[[package]]
2022-05-30 20:43:18 +02:00
name = "cpufeatures"
2024-10-11 10:22:05 +02:00
version = "0.2.14"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
2022-05-30 20:43:18 +02:00
dependencies = [
"libc",
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "crc32fast"
2024-10-11 10:22:05 +02:00
version = "1.4.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"cfg-if",
2020-08-28 10:08:28 +02:00
]
[[package]]
2023-11-15 11:52:11 +01:00
name = "crypto-common"
version = "0.1.6"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2020-08-28 10:08:28 +02:00
dependencies = [
"generic-array",
2023-11-15 11:52:11 +01:00
"typenum",
2020-08-28 10:08:28 +02:00
]
[[package]]
2023-11-15 11:52:11 +01:00
name = "dashmap"
version = "5.5.3"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"cfg-if",
2024-10-11 10:22:05 +02:00
"hashbrown 0.14.5",
2023-11-15 11:52:11 +01:00
"lock_api",
"once_cell",
"parking_lot_core",
"serde",
2020-08-28 10:08:28 +02:00
]
2024-10-11 10:22:05 +02:00
[[package]]
name = "data-encoding"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
2022-06-02 11:41:45 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "deranged"
2024-10-11 10:22:05 +02:00
version = "0.3.11"
2022-06-02 11:41:45 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2022-06-02 11:41:45 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"powerfmt",
"serde",
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
[[package]]
name = "encoding_rs"
2024-10-11 10:22:05 +02:00
version = "0.8.34"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
2023-11-15 11:52:11 +01:00
dependencies = [
"cfg-if",
2022-06-02 11:41:45 +02:00
]
2024-10-11 10:22:05 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2020-08-28 10:08:28 +02:00
[[package]]
name = "flate2"
2024-10-11 10:22:05 +02:00
version = "1.0.34"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
2020-08-28 10:08:28 +02:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
2022-05-30 20:43:18 +02:00
name = "form_urlencoded"
2024-10-11 10:22:05 +02:00
version = "1.2.1"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2020-08-28 10:08:28 +02:00
dependencies = [
2022-05-30 20:43:18 +02:00
"percent-encoding",
2020-08-28 10:08:28 +02:00
]
[[package]]
2022-05-30 20:43:18 +02:00
name = "futures"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
2022-05-30 20:43:18 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "futures-channel"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2020-08-28 10:08:28 +02:00
dependencies = [
"futures-core",
2022-05-30 20:43:18 +02:00
"futures-sink",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "futures-core"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2020-08-28 10:08:28 +02:00
[[package]]
name = "futures-io"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
2023-11-15 11:52:11 +01:00
[[package]]
name = "futures-macro"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
2023-11-15 11:52:11 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "futures-sink"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2020-08-28 10:08:28 +02:00
[[package]]
name = "futures-task"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2020-08-28 10:08:28 +02:00
[[package]]
name = "futures-util"
2024-10-11 10:22:05 +02:00
version = "0.3.31"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2020-08-28 10:08:28 +02:00
dependencies = [
2022-05-30 20:43:18 +02:00
"futures-channel",
2020-08-28 10:08:28 +02:00
"futures-core",
"futures-io",
2023-11-15 11:52:11 +01:00
"futures-macro",
2022-05-30 20:43:18 +02:00
"futures-sink",
2020-08-28 10:08:28 +02:00
"futures-task",
"memchr",
2022-05-30 20:43:18 +02:00
"pin-project-lite",
2020-08-28 10:08:28 +02:00
"pin-utils",
"slab",
]
2024-10-11 10:22:05 +02:00
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "generic-array"
2023-11-15 11:52:11 +01:00
version = "0.14.7"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2020-08-28 10:08:28 +02:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-10-11 10:22:05 +02:00
version = "0.2.15"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"cfg-if",
2020-08-28 10:08:28 +02:00
"libc",
2023-11-15 11:52:11 +01:00
"wasi",
2020-08-28 10:08:28 +02:00
]
2023-11-15 11:52:11 +01:00
[[package]]
name = "gimli"
2024-10-11 10:22:05 +02:00
version = "0.31.1"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2023-11-15 11:52:11 +01:00
2020-08-28 10:08:28 +02:00
[[package]]
name = "h2"
2024-10-11 10:22:05 +02:00
version = "0.3.26"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"bytes",
2020-08-28 10:08:28 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2024-10-11 10:22:05 +02:00
"http 0.2.12",
2020-08-28 10:08:28 +02:00
"indexmap",
"slab",
"tokio",
2023-11-15 11:52:11 +01:00
"tokio-util",
2020-08-28 10:08:28 +02:00
"tracing",
]
[[package]]
name = "hashbrown"
2024-10-11 10:22:05 +02:00
version = "0.14.5"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2023-11-15 11:52:11 +01:00
[[package]]
name = "hashbrown"
2024-10-11 10:22:05 +02:00
version = "0.15.0"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
2020-08-28 10:08:28 +02:00
[[package]]
name = "hermit-abi"
2024-10-11 10:22:05 +02:00
version = "0.3.9"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2020-08-28 10:08:28 +02:00
[[package]]
name = "http"
2024-10-11 10:22:05 +02:00
version = "0.2.12"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"bytes",
2020-08-28 10:08:28 +02:00
"fnv",
2022-05-31 08:58:38 +02:00
"itoa",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "http-body"
2024-10-11 10:22:05 +02:00
version = "0.4.6"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"bytes",
2024-10-11 10:22:05 +02:00
"http 0.2.12",
2022-05-30 20:43:18 +02:00
"pin-project-lite",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "httparse"
2024-10-11 10:22:05 +02:00
version = "1.9.5"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
2020-08-28 10:08:28 +02:00
2022-05-30 20:43:18 +02:00
[[package]]
name = "httpdate"
2023-11-15 11:52:11 +01:00
version = "1.0.3"
2022-05-30 20:43:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2022-05-30 20:43:18 +02:00
2020-08-28 10:08:28 +02:00
[[package]]
name = "hyper"
2024-10-11 10:22:05 +02:00
version = "0.14.30"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"bytes",
2020-08-28 10:08:28 +02:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
2024-10-11 10:22:05 +02:00
"http 0.2.12",
2020-08-28 10:08:28 +02:00
"http-body",
"httparse",
2022-05-30 20:43:18 +02:00
"httpdate",
2022-05-31 08:58:38 +02:00
"itoa",
"pin-project-lite",
2024-10-11 10:22:05 +02:00
"socket2",
2020-08-28 10:08:28 +02:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
2023-11-15 11:52:11 +01:00
version = "0.24.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"futures-util",
2024-10-11 10:22:05 +02:00
"http 0.2.12",
2020-08-28 10:08:28 +02:00
"hyper",
2024-10-11 10:22:05 +02:00
"rustls 0.21.12",
2020-08-28 10:08:28 +02:00
"tokio",
2023-11-15 11:52:11 +01:00
"tokio-rustls 0.24.1",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "idna"
2024-10-11 10:22:05 +02:00
version = "0.5.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2020-08-28 10:08:28 +02:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2024-10-11 10:22:05 +02:00
version = "2.6.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
2020-08-28 10:08:28 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"equivalent",
"hashbrown 0.15.0",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "ipnet"
2024-10-11 10:22:05 +02:00
version = "2.10.1"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
2020-08-28 10:08:28 +02:00
[[package]]
2022-05-30 20:43:18 +02:00
name = "itoa"
2024-10-11 10:22:05 +02:00
version = "1.0.11"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2020-08-28 10:08:28 +02:00
[[package]]
2022-05-30 20:43:18 +02:00
name = "js-sys"
2024-10-11 10:22:05 +02:00
version = "0.3.72"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
2020-08-28 10:08:28 +02:00
dependencies = [
2022-05-30 20:43:18 +02:00
"wasm-bindgen",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "libc"
2024-10-11 10:22:05 +02:00
version = "0.2.159"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "lock_api"
2024-10-11 10:22:05 +02:00
version = "0.4.12"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"autocfg",
"scopeguard",
2020-08-28 10:08:28 +02:00
]
[[package]]
2023-11-15 11:52:11 +01:00
name = "log"
2024-10-11 10:22:05 +02:00
version = "0.4.22"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2020-08-28 10:08:28 +02:00
[[package]]
name = "memchr"
2024-10-11 10:22:05 +02:00
version = "2.7.4"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2020-08-28 10:08:28 +02:00
[[package]]
name = "mime"
2023-11-15 11:52:11 +01:00
version = "0.3.17"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2020-08-28 10:08:28 +02:00
[[package]]
name = "mime_guess"
2024-10-11 10:22:05 +02:00
version = "2.0.5"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2020-08-28 10:08:28 +02:00
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "miniz_oxide"
2024-10-11 10:22:05 +02:00
version = "0.8.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2020-08-28 10:08:28 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"adler2",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "mio"
2024-10-11 10:22:05 +02:00
version = "1.0.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2020-08-28 10:08:28 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"hermit-abi",
2020-08-28 10:08:28 +02:00
"libc",
2023-11-15 11:52:11 +01:00
"wasi",
2024-10-11 10:22:05 +02:00
"windows-sys 0.52.0",
2020-08-28 10:08:28 +02:00
]
[[package]]
2024-10-11 10:22:05 +02:00
name = "num-conv"
version = "0.1.0"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "object"
2024-10-11 10:22:05 +02:00
version = "0.36.5"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2023-11-15 11:52:11 +01:00
dependencies = [
"memchr",
]
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "once_cell"
2024-10-11 10:22:05 +02:00
version = "1.20.2"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2020-08-28 10:08:28 +02:00
[[package]]
2023-11-15 11:52:11 +01:00
name = "parking_lot"
2024-10-11 10:22:05 +02:00
version = "0.12.3"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"lock_api",
"parking_lot_core",
2020-08-28 10:08:28 +02:00
]
[[package]]
2023-11-15 11:52:11 +01:00
name = "parking_lot_core"
2024-10-11 10:22:05 +02:00
version = "0.9.10"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2020-08-28 10:08:28 +02:00
dependencies = [
2023-11-15 11:52:11 +01:00
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2024-10-11 10:22:05 +02:00
"windows-targets 0.52.6",
2020-08-28 10:08:28 +02:00
]
2023-11-15 11:52:11 +01:00
[[package]]
name = "percent-encoding"
2024-10-11 10:22:05 +02:00
version = "2.3.1"
2023-11-15 11:52:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-11-15 11:52:11 +01:00
2020-08-28 10:08:28 +02:00
[[package]]
name = "pin-project-lite"
2024-10-11 10:22:05 +02:00
version = "0.2.14"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2020-08-28 10:08:28 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-11-15 11:52:11 +01:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2020-08-28 10:08:28 +02:00
[[package]]
name = "ppv-lite86"
2024-10-11 10:22:05 +02:00
version = "0.2.20"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "proc-macro2"
2024-10-11 10:22:05 +02:00
version = "1.0.87"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a"
2020-08-28 10:08:28 +02:00
dependencies = [
2022-05-30 20:43:18 +02:00
"unicode-ident",
2020-08-28 10:08:28 +02:00
]
[[package]]
name = "quote"
2024-10-11 10:22:05 +02:00
version = "1.0.37"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2020-08-28 10:08:28 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2023-11-15 11:52:11 +01:00
version = "0.8.5"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2020-08-28 10:08:28 +02:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2023-11-15 11:52:11 +01:00
version = "0.3.1"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2020-08-28 10:08:28 +02:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2023-11-15 11:52:11 +01:00
version = "0.6.4"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 11:52:11 +01:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2020-08-28 10:08:28 +02:00
dependencies = [
"getrandom",
]
[[package]]
2023-11-15 11:52:11 +01:00
name = "redox_syscall"
2024-10-11 10:22:05 +02:00
version = "0.5.7"
2022-05-30 18:37:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2022-05-30 18:37:21 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"bitflags 2.6.0",
2022-05-30 18:37:21 +02:00
]
2020-08-28 10:08:28 +02:00
[[package]]
name = "reqwest"
2024-10-11 10:22:05 +02:00
version = "0.11.27"
2020-08-28 10:08:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 10:22:05 +02:00
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
2020-08-28 10:08:28 +02:00
dependencies = [
2024-10-11 10:22:05 +02:00
"base64 0.21.7",
2023-11-15 11:52:11 +01:00
"bytes",
2020-08-28 10:08:28 +02:00
"encoding_rs",
"futures-core",
"futures-util",
2022-05-30 20:43:18 +02:00
"h2",
2024-10-11 10:22:05 +02:00
"http 0.2.12",
2020-08-28 10:08:28 +02:00
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
"mime_guess",
2023-11-15 11:52:11 +01:00
"once_cell",
2020-08-28 10:08:28 +02:00
"percent-encoding",