1
Fork 0
minesweeper-nojs/Cargo.lock

674 lines
17 KiB
Text
Raw Permalink Normal View History

2023-07-02 17:11:46 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2023-11-09 19:59:35 +01:00
version = "0.21.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2023-07-02 17:11:46 +02:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backtrace"
2023-11-09 19:59:35 +01:00
version = "0.3.69"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2023-07-02 17:11:46 +02:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bytes"
2023-11-09 19:59:35 +01:00
version = "1.5.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2023-07-02 17:11:46 +02:00
[[package]]
name = "cc"
2023-11-09 19:59:35 +01:00
version = "1.0.83"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
2023-07-02 17:11:46 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-12-31 22:49:37 +01:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-07-02 17:11:46 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2023-12-31 22:49:37 +01:00
version = "1.2.1"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2023-07-02 17:11:46 +02:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2023-12-31 22:49:37 +01:00
version = "0.3.30"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2023-07-02 17:11:46 +02:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-12-31 22:49:37 +01:00
version = "0.3.30"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2023-07-02 17:11:46 +02:00
[[package]]
name = "futures-sink"
2023-12-31 22:49:37 +01:00
version = "0.3.30"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2023-07-02 17:11:46 +02:00
[[package]]
name = "futures-task"
2023-12-31 22:49:37 +01:00
version = "0.3.30"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2023-07-02 17:11:46 +02:00
[[package]]
name = "futures-util"
2023-12-31 22:49:37 +01:00
version = "0.3.30"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2023-07-02 17:11:46 +02:00
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
[[package]]
name = "gimli"
2023-12-31 22:49:37 +01:00
version = "0.28.1"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2023-07-02 17:11:46 +02:00
[[package]]
name = "h2"
2023-12-31 22:49:37 +01:00
version = "0.4.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "e1d308f63daf4181410c242d34c11f928dcb3aa105852019e043c9d1f4e4368a"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2023-12-31 22:49:37 +01:00
version = "0.14.3"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
2023-07-02 17:11:46 +02:00
[[package]]
name = "hermit-abi"
2023-11-09 19:59:35 +01:00
version = "0.3.3"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-07-02 17:11:46 +02:00
[[package]]
name = "http"
2023-12-31 22:49:37 +01:00
version = "1.0.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2023-12-31 22:49:37 +01:00
version = "1.0.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"http",
]
[[package]]
name = "http-body-util"
2023-12-31 22:49:37 +01:00
version = "0.1.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"futures-util",
"http",
"http-body",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
2023-11-09 19:59:35 +01:00
version = "1.0.3"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2023-07-02 17:11:46 +02:00
[[package]]
name = "hyper"
2023-12-31 22:49:37 +01:00
version = "1.1.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"tokio",
"want",
]
2023-11-09 19:59:35 +01:00
[[package]]
name = "hyper-util"
2023-12-31 22:49:37 +01:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdea9aac0dbe5a9240d68cfd9501e2db94222c6dc06843e06640b9e07f0fdc67"
2023-11-09 19:59:35 +01:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http",
"http-body",
"hyper",
"pin-project-lite",
"socket2",
"tokio",
"tracing",
]
2023-07-02 17:11:46 +02:00
[[package]]
name = "idna"
2023-12-31 22:49:37 +01:00
version = "0.5.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2023-07-02 17:11:46 +02:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2023-12-31 22:49:37 +01:00
version = "2.1.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
2023-07-02 17:11:46 +02:00
dependencies = [
2023-12-31 22:49:37 +01:00
"equivalent",
2023-07-02 17:11:46 +02:00
"hashbrown",
]
[[package]]
name = "itoa"
2023-12-31 22:49:37 +01:00
version = "1.0.10"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2023-07-02 17:11:46 +02:00
[[package]]
name = "libc"
2023-12-31 22:49:37 +01:00
version = "0.2.151"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
2023-07-02 17:11:46 +02:00
[[package]]
name = "lock_api"
2023-11-09 19:59:35 +01:00
version = "0.4.11"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2023-07-02 17:11:46 +02:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "memchr"
2023-12-31 22:49:37 +01:00
version = "2.7.1"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2023-07-02 17:11:46 +02:00
[[package]]
name = "minesweeper-nojs"
2024-05-02 20:39:19 +02:00
version = "0.1.3"
2023-07-02 17:11:46 +02:00
dependencies = [
"http-body-util",
"hyper",
2023-11-09 19:59:35 +01:00
"hyper-util",
2023-07-02 17:11:46 +02:00
"tokio",
"url",
]
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
[[package]]
name = "mio"
2023-12-31 22:49:37 +01:00
version = "0.8.10"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
2023-07-02 17:11:46 +02:00
dependencies = [
"libc",
"wasi",
"windows-sys",
]
[[package]]
name = "num_cpus"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "object"
2023-12-31 22:49:37 +01:00
version = "0.32.2"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2023-07-02 17:11:46 +02:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-12-31 22:49:37 +01:00
version = "1.19.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-07-02 17:11:46 +02:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-11-09 19:59:35 +01:00
version = "0.9.9"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2023-07-02 17:11:46 +02:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-targets",
]
[[package]]
name = "percent-encoding"
2023-12-31 22:49:37 +01:00
version = "2.3.1"
2023-11-09 19:59:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-11-09 19:59:35 +01:00
2023-07-02 17:11:46 +02:00
[[package]]
name = "pin-project-lite"
2023-11-09 19:59:35 +01:00
version = "0.2.13"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2023-07-02 17:11:46 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "proc-macro2"
2023-12-31 22:49:37 +01:00
version = "1.0.72"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "a293318316cf6478ec1ad2a21c49390a8d5b5eae9fab736467d93fbc0edc29c5"
2023-07-02 17:11:46 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2023-12-31 22:49:37 +01:00
version = "1.0.34"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "22a37c9326af5ed140c86a46655b5278de879853be5573c01df185b6f49a580a"
2023-07-02 17:11:46 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_syscall"
2023-11-09 19:59:35 +01:00
version = "0.4.1"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2023-07-02 17:11:46 +02:00
dependencies = [
"bitflags",
]
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "scopeguard"
2023-11-09 19:59:35 +01:00
version = "1.2.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2023-07-02 17:11:46 +02:00
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2023-11-09 19:59:35 +01:00
version = "0.4.9"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-07-02 17:11:46 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2023-12-31 22:49:37 +01:00
version = "1.11.2"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2023-07-02 17:11:46 +02:00
[[package]]
name = "socket2"
2023-11-09 19:59:35 +01:00
version = "0.5.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2023-07-02 17:11:46 +02:00
dependencies = [
"libc",
2023-11-09 19:59:35 +01:00
"windows-sys",
2023-07-02 17:11:46 +02:00
]
[[package]]
name = "syn"
2023-12-31 22:49:37 +01:00
version = "2.0.43"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "ee659fb5f3d355364e1f3e5bc10fb82068efbf824a1e9d1c9504244a6469ad53"
2023-07-02 17:11:46 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2023-12-31 22:49:37 +01:00
version = "1.35.1"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
2023-07-02 17:11:46 +02:00
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
"windows-sys",
]
[[package]]
name = "tokio-macros"
2023-12-31 22:49:37 +01:00
version = "2.2.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2023-07-02 17:11:46 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-util"
2023-11-09 19:59:35 +01:00
version = "0.7.10"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2023-07-02 17:11:46 +02:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "tracing"
2023-11-09 19:59:35 +01:00
version = "0.1.40"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2023-07-02 17:11:46 +02:00
dependencies = [
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-11-09 19:59:35 +01:00
version = "0.1.32"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2023-07-02 17:11:46 +02:00
dependencies = [
"once_cell",
]
[[package]]
name = "try-lock"
2023-12-31 22:49:37 +01:00
version = "0.2.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2023-07-02 17:11:46 +02:00
[[package]]
name = "unicode-bidi"
2023-12-31 22:49:37 +01:00
version = "0.3.14"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2023-07-02 17:11:46 +02:00
[[package]]
name = "unicode-ident"
2023-11-09 19:59:35 +01:00
version = "1.0.12"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-07-02 17:11:46 +02:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "url"
2023-12-31 22:49:37 +01:00
version = "2.5.0"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 22:49:37 +01:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2023-07-02 17:11:46 +02:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-07-02 17:11:46 +02:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_i686_gnu"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_i686_msvc"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-07-02 17:11:46 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-11-09 19:59:35 +01:00
version = "0.48.5"
2023-07-02 17:11:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-09 19:59:35 +01:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"