its-matrix-bot/Cargo.lock

3298 lines
80 KiB
Plaintext
Raw Normal View History

2022-11-13 00:19:16 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2023-07-18 22:20:17 +02:00
version = "0.20.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
2022-11-13 00:19:16 +01:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aead"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array",
"rand_core 0.6.4",
]
[[package]]
name = "aes"
2023-07-18 22:20:17 +02:00
version = "0.8.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
2023-07-18 22:20:17 +02:00
"cipher 0.4.4",
2022-11-13 00:19:16 +01:00
"cpufeatures",
]
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2023-07-18 22:20:17 +02:00
version = "1.0.2"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
2022-11-13 00:19:16 +01:00
dependencies = [
"memchr",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "anstream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
[[package]]
name = "anstyle-parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "anyhow"
2023-07-18 22:20:17 +02:00
version = "1.0.72"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
2022-11-13 00:19:16 +01:00
[[package]]
name = "anymap2"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
[[package]]
name = "arrayref"
2023-07-18 22:20:17 +02:00
version = "0.3.7"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
2022-11-13 00:19:16 +01:00
[[package]]
name = "arrayvec"
2023-07-18 22:20:17 +02:00
version = "0.7.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2022-11-13 00:19:16 +01:00
dependencies = [
"serde",
]
[[package]]
name = "assign"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f093eed78becd229346bf859eec0aa4dd7ddde0757287b2b4107a1f09c80002"
[[package]]
name = "async-lock"
2023-07-18 22:20:17 +02:00
version = "2.7.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
2022-11-13 00:19:16 +01:00
dependencies = [
"event-listener",
]
[[package]]
name = "async-once-cell"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72faff1fdc615a0199d7bf71e6f389af54d46a66e9beb5d76c39e48eda93ecce"
[[package]]
name = "async-stream"
2023-07-18 22:20:17 +02:00
version = "0.3.5"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
2022-11-13 00:19:16 +01:00
dependencies = [
"async-stream-impl",
"futures-core",
2023-07-18 22:20:17 +02:00
"pin-project-lite",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "async-stream-impl"
2023-07-18 22:20:17 +02:00
version = "0.3.5"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "async-trait"
2023-07-18 22:20:17 +02:00
version = "0.1.71"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "atomic"
2023-07-18 22:20:17 +02:00
version = "0.5.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
2022-11-13 00:19:16 +01:00
[[package]]
2023-07-18 22:20:17 +02:00
name = "autocfg"
version = "0.1.8"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backoff"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
"futures-core",
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
"instant",
"pin-project-lite",
"rand 0.8.5",
"tokio",
]
[[package]]
name = "backtrace"
2023-07-18 22:20:17 +02:00
version = "0.3.68"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
2022-11-13 00:19:16 +01:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-07-18 22:20:17 +02:00
[[package]]
name = "base64"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2022-11-13 00:19:16 +01:00
[[package]]
name = "base64ct"
2023-07-18 22:20:17 +02:00
version = "1.6.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2022-11-13 00:19:16 +01:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-18 22:20:17 +02:00
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
2022-11-13 00:19:16 +01:00
[[package]]
name = "blake3"
2023-07-18 22:20:17 +02:00
version = "1.4.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "199c42ab6972d92c9f8995f086273d25c42fc0f7b2a1fcefba465c1352d25ba5"
2022-11-13 00:19:16 +01:00
dependencies = [
"arrayref",
"arrayvec",
"cc",
"cfg-if",
"constant_time_eq",
2023-07-18 22:20:17 +02:00
"digest 0.10.7",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
[[package]]
name = "block-buffer"
2023-07-18 22:20:17 +02:00
version = "0.10.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-11-13 00:19:16 +01:00
dependencies = [
"generic-array",
]
[[package]]
name = "block-padding"
2023-07-18 22:20:17 +02:00
version = "0.3.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
2022-11-13 00:19:16 +01:00
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2023-07-18 22:20:17 +02:00
version = "3.13.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2022-11-13 00:19:16 +01:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2023-07-18 22:20:17 +02:00
version = "1.4.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-11-13 00:19:16 +01:00
[[package]]
name = "cbc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
dependencies = [
2023-07-18 22:20:17 +02:00
"cipher 0.4.4",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "cc"
2023-07-18 22:20:17 +02:00
version = "1.0.79"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-11-13 00:19:16 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chacha20"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
dependencies = [
"cfg-if",
"cipher 0.3.0",
"cpufeatures",
"zeroize",
]
[[package]]
name = "chacha20poly1305"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
dependencies = [
"aead",
"chacha20",
"cipher 0.3.0",
"poly1305",
"zeroize",
]
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "cipher"
2023-07-18 22:20:17 +02:00
version = "0.4.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
2022-11-13 00:19:16 +01:00
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "clap"
2023-07-18 22:20:17 +02:00
version = "4.3.16"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "74bb1b4028935821b2d6b439bba2e970bdcf740832732437ead910c632e30d7d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"clap_builder",
2022-11-13 00:19:16 +01:00
"clap_derive",
"once_cell",
2023-07-18 22:20:17 +02:00
]
[[package]]
name = "clap_builder"
version = "4.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ae467cbb0111869b765e13882a1dbbd6cb52f58203d8b80c44f667d4dd19843"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2022-11-13 00:19:16 +01:00
"strsim",
]
[[package]]
name = "clap_derive"
2023-07-18 22:20:17 +02:00
version = "4.3.12"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
2022-11-13 00:19:16 +01:00
dependencies = [
"heck",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "clap_lex"
2023-07-18 22:20:17 +02:00
version = "0.5.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"bitflags 1.3.2",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "color-eyre"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-11-13 00:19:16 +01:00
[[package]]
name = "const-oid"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3"
[[package]]
name = "constant_time_eq"
2023-07-18 22:20:17 +02:00
version = "0.3.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2022-11-13 00:19:16 +01:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-07-18 22:20:17 +02:00
version = "0.8.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-11-13 00:19:16 +01:00
[[package]]
name = "cpufeatures"
2023-07-18 22:20:17 +02:00
version = "0.2.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2022-11-13 00:19:16 +01:00
dependencies = [
"libc",
]
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-epoch"
2023-07-18 22:20:17 +02:00
version = "0.9.15"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
2022-11-13 00:19:16 +01:00
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2023-07-18 22:20:17 +02:00
version = "0.8.16"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "ctr"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
dependencies = [
2023-07-18 22:20:17 +02:00
"cipher 0.4.4",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "curve25519-dalek"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0"
dependencies = [
"byteorder",
"digest 0.9.0",
"rand_core 0.5.1",
"serde",
"subtle",
"zeroize",
]
[[package]]
name = "darling"
2023-07-18 22:20:17 +02:00
version = "0.14.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
2022-11-13 00:19:16 +01:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2023-07-18 22:20:17 +02:00
version = "0.14.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
2022-11-13 00:19:16 +01:00
dependencies = [
"fnv",
"ident_case",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
2022-11-13 00:19:16 +01:00
"strsim",
2023-07-18 22:20:17 +02:00
"syn 1.0.109",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "darling_macro"
2023-07-18 22:20:17 +02:00
version = "0.14.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
2022-11-13 00:19:16 +01:00
dependencies = [
"darling_core",
2023-07-18 22:20:17 +02:00
"quote 1.0.31",
"syn 1.0.109",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "dashmap"
2023-07-18 22:20:17 +02:00
version = "5.5.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
2023-07-18 22:20:17 +02:00
"hashbrown 0.14.0",
2022-11-13 00:19:16 +01:00
"lock_api",
"once_cell",
2023-07-18 22:20:17 +02:00
"parking_lot_core 0.9.8",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "der"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c"
dependencies = [
"const-oid",
]
[[package]]
name = "derive_builder"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
dependencies = [
"derive_builder_macro",
]
[[package]]
name = "derive_builder_core"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
dependencies = [
"darling",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 1.0.109",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "derive_builder_macro"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
dependencies = [
"derive_builder_core",
2023-07-18 22:20:17 +02:00
"syn 1.0.109",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
[[package]]
name = "digest"
2023-07-18 22:20:17 +02:00
version = "0.10.7"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"block-buffer 0.10.4",
2022-11-13 00:19:16 +01:00
"crypto-common",
"subtle",
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "displaydoc"
2023-07-18 22:20:17 +02:00
version = "0.2.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "ed25519"
2023-07-18 22:20:17 +02:00
version = "1.5.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7"
2022-11-13 00:19:16 +01:00
dependencies = [
"serde",
"signature",
]
[[package]]
name = "ed25519-dalek"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
dependencies = [
"curve25519-dalek",
"ed25519",
"rand 0.7.3",
"serde",
"serde_bytes",
"sha2 0.9.9",
"zeroize",
]
[[package]]
name = "either"
2023-07-18 22:20:17 +02:00
version = "1.8.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-11-13 00:19:16 +01:00
[[package]]
name = "encoding_rs"
2023-07-18 22:20:17 +02:00
version = "0.8.32"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fastrand"
2023-07-18 22:20:17 +02:00
version = "1.9.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-11-13 00:19:16 +01:00
dependencies = [
"instant",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
2023-07-18 22:20:17 +02:00
version = "1.2.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2022-11-13 00:19:16 +01:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "fs_extra"
2023-07-18 22:20:17 +02:00
version = "1.3.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2022-11-13 00:19:16 +01:00
[[package]]
name = "futures"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2022-11-13 00:19:16 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-11-13 00:19:16 +01:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-11-13 00:19:16 +01:00
[[package]]
name = "futures-executor"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2022-11-13 00:19:16 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2022-11-13 00:19:16 +01:00
[[package]]
name = "futures-macro"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "futures-signals"
2023-07-18 22:20:17 +02:00
version = "0.3.32"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "36a12cb78961d5c0bc0e358599bba98ec09201090a22339cd8ea27e815c11b25"
2022-11-13 00:19:16 +01:00
dependencies = [
"discard",
"futures-channel",
"futures-core",
"futures-util",
2023-07-18 22:20:17 +02:00
"gensym",
2022-11-13 00:19:16 +01:00
"pin-project",
]
[[package]]
name = "futures-sink"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-11-13 00:19:16 +01:00
[[package]]
name = "futures-task"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-11-13 00:19:16 +01:00
[[package]]
name = "futures-util"
2023-07-18 22:20:17 +02:00
version = "0.3.28"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-11-13 00:19:16 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "generic-array"
2023-07-18 22:20:17 +02:00
version = "0.14.7"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2022-11-13 00:19:16 +01:00
dependencies = [
"typenum",
"version_check",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "gensym"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb328fe25cbf075818a3e57bb5ee39b49b4f26c94d685356426154c5962cccd"
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
"uuid 0.7.4",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"js-sys",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
"wasm-bindgen",
]
[[package]]
name = "getrandom"
2023-07-18 22:20:17 +02:00
version = "0.2.10"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"js-sys",
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
"wasm-bindgen",
]
[[package]]
name = "gimli"
2023-07-18 22:20:17 +02:00
version = "0.27.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2022-11-13 00:19:16 +01:00
[[package]]
name = "h2"
2023-07-18 22:20:17 +02:00
version = "0.3.20"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2022-11-13 00:19:16 +01:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
2023-07-18 22:20:17 +02:00
"indexmap 1.9.3",
2022-11-13 00:19:16 +01:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
"ahash",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2022-11-13 00:19:16 +01:00
[[package]]
name = "heck"
2023-07-18 22:20:17 +02:00
version = "0.4.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-11-13 00:19:16 +01:00
[[package]]
name = "hermit-abi"
2023-07-18 22:20:17 +02:00
version = "0.3.2"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2022-11-13 00:19:16 +01:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2023-07-18 22:20:17 +02:00
"digest 0.10.7",
]
[[package]]
name = "home"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
"windows-sys",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "http"
2023-07-18 22:20:17 +02:00
version = "0.2.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-11-13 00:19:16 +01:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"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"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "hyper"
2023-07-18 22:20:17 +02:00
version = "0.14.27"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2022-11-13 00:19:16 +01:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2023-07-18 22:20:17 +02:00
version = "0.4.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2022-11-13 00:19:16 +01:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "indexed_db_futures"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d26ac735f676c52305becf53264b91cea9866a8de61ccbf464405b377b9cbca9"
dependencies = [
"cfg-if",
"js-sys",
"uuid 0.8.2",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "indexmap"
2023-07-18 22:20:17 +02:00
version = "1.9.3"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
"hashbrown 0.12.3",
2022-11-13 00:19:16 +01:00
"serde",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "indexmap"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
dependencies = [
"equivalent",
"hashbrown 0.14.0",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"block-padding",
"generic-array",
]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
"hermit-abi",
"libc",
"windows-sys",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "ipnet"
2023-07-18 22:20:17 +02:00
version = "2.8.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
[[package]]
name = "is-terminal"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
dependencies = [
"hermit-abi",
"rustix 0.38.4",
"windows-sys",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2023-07-18 22:20:17 +02:00
version = "1.0.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2022-11-13 00:19:16 +01:00
[[package]]
name = "its-matrix-bot"
version = "0.1.0"
dependencies = [
"clap",
"color-eyre",
"matrix-sdk",
"never-say-never",
"reqwest",
"serde",
"spaceapi",
"thiserror",
"time",
2022-11-13 00:19:16 +01:00
"tokio",
2023-07-18 22:27:59 +02:00
"toml 0.7.6",
2022-11-13 00:19:16 +01:00
"tracing",
"tracing-error",
"tracing-subscriber",
"url",
"xdg",
]
[[package]]
name = "js-sys"
2023-07-18 22:20:17 +02:00
version = "0.3.64"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2022-11-13 00:19:16 +01:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "js_int"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d937f95470b270ce8b8950207715d71aa8e153c0d44c6684d59397ed4949160a"
dependencies = [
"serde",
]
[[package]]
name = "js_option"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68421373957a1593a767013698dbf206e2b221eefe97a44d98d18672ff38423c"
dependencies = [
"serde",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2023-07-18 22:20:17 +02:00
version = "0.2.147"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
2022-11-13 00:19:16 +01:00
[[package]]
name = "lock_api"
2023-07-18 22:20:17 +02:00
version = "0.4.10"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
2022-11-13 00:19:16 +01:00
"scopeguard",
]
[[package]]
name = "log"
2023-07-18 22:20:17 +02:00
version = "0.4.19"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2022-11-13 00:19:16 +01:00
[[package]]
name = "lru"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909"
dependencies = [
2023-07-18 22:20:17 +02:00
"hashbrown 0.12.3",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-07-18 22:20:17 +02:00
"regex-automata 0.1.10",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "matrix-sdk"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbeafb4809f33f377165f2fbcf10e0613053ad206762194c3050a727fd3abcb2"
dependencies = [
"anymap2",
"async-once-cell",
"async-stream",
"async-trait",
"backoff",
"bytes",
"dashmap",
"derive_builder",
"event-listener",
"futures-core",
"futures-signals",
"futures-util",
"http",
"matrix-sdk-base",
"matrix-sdk-common",
"matrix-sdk-indexeddb",
"matrix-sdk-sled",
"mime",
"reqwest",
"ruma",
"serde",
"serde_json",
"thiserror",
"tokio",
"tracing",
"url",
"wasm-timer",
"zeroize",
]
[[package]]
name = "matrix-sdk-base"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b944f6d1fc8779ba790dd0b942ceff45c626c1f5da847f01122d355ad06511bd"
dependencies = [
"async-stream",
"async-trait",
"dashmap",
"futures-channel",
"futures-core",
"futures-signals",
"futures-util",
"lru",
"matrix-sdk-common",
"matrix-sdk-crypto",
"once_cell",
"ruma",
"serde",
"serde_json",
"thiserror",
"tracing",
"zeroize",
]
[[package]]
name = "matrix-sdk-common"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b85a6a743cc9dcf9385e61a26db78276078beddd27f3762d9d82baa2030695f1"
dependencies = [
"async-lock",
"futures-core",
"futures-util",
"instant",
"ruma",
"serde",
"tokio",
"wasm-bindgen-futures",
"wasm-timer",
]
[[package]]
name = "matrix-sdk-crypto"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68fa699e8dd54578a4b92e3fcd18a50da8e415a0c042da1706b0330fc2d8f949"
dependencies = [
"aes",
"async-trait",
"atomic",
2023-07-18 22:20:17 +02:00
"base64 0.13.1",
2022-11-13 00:19:16 +01:00
"byteorder",
"ctr",
"dashmap",
"event-listener",
"futures-util",
"hmac",
"matrix-sdk-common",
"pbkdf2",
"rand 0.8.5",
"ruma",
"serde",
"serde_json",
2023-07-18 22:20:17 +02:00
"sha2 0.10.7",
2022-11-13 00:19:16 +01:00
"thiserror",
"tokio",
"tracing",
"vodozemac",
"zeroize",
]
[[package]]
name = "matrix-sdk-indexeddb"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7847d36bba832bc787214323bc042b71dca7fdf2aee9f0e3eb573b64f2f7eb7f"
dependencies = [
"anyhow",
"async-trait",
2023-07-18 22:20:17 +02:00
"base64 0.13.1",
2022-11-13 00:19:16 +01:00
"dashmap",
"derive_builder",
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
"indexed_db_futures",
"js-sys",
"matrix-sdk-base",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
"ruma",
"serde",
"serde_json",
"thiserror",
"tracing",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "matrix-sdk-sled"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ded5a703ad8a82b8edfde808228711315c8761a5fbf7ac2b98ab4951dadd066"
dependencies = [
"async-stream",
"async-trait",
"dashmap",
"derive_builder",
"fs_extra",
"futures-core",
"futures-util",
"matrix-sdk-base",
"matrix-sdk-common",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
"ruma",
"serde",
"serde_json",
"sled",
"thiserror",
"tokio",
"tracing",
]
[[package]]
name = "matrix-sdk-store-encryption"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ddee75c3cca58f3a323283dc4e849d19d52988903f907ed0fb53dcad5d6fd25"
dependencies = [
"blake3",
"chacha20poly1305",
"displaydoc",
"hmac",
"pbkdf2",
"rand 0.8.5",
"serde",
"serde_json",
2023-07-18 22:20:17 +02:00
"sha2 0.10.7",
2022-11-13 00:19:16 +01:00
"thiserror",
"zeroize",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "memoffset"
2023-07-18 22:20:17 +02:00
version = "0.9.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "mime"
2023-07-18 22:20:17 +02:00
version = "0.3.17"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-11-13 00:19:16 +01:00
[[package]]
name = "miniz_oxide"
2023-07-18 22:20:17 +02:00
version = "0.7.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2022-11-13 00:19:16 +01:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2023-07-18 22:20:17 +02:00
version = "0.8.8"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2022-11-13 00:19:16 +01:00
dependencies = [
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-07-18 22:20:17 +02:00
"windows-sys",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "never-say-never"
version = "6.6.666"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf5a574dadd7941adeaa71823ecba5e28331b8313fb2e1c6a5c7e5981ea53ad6"
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
[[package]]
name = "num_cpus"
2023-07-18 22:20:17 +02:00
version = "1.16.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-11-13 00:19:16 +01:00
dependencies = [
"hermit-abi",
"libc",
]
2023-07-18 22:19:03 +02:00
[[package]]
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "object"
2023-07-18 22:20:17 +02:00
version = "0.31.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
2022-11-13 00:19:16 +01:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-07-18 22:20:17 +02:00
version = "1.18.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2022-11-13 00:19:16 +01:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
2023-07-18 22:20:17 +02:00
version = "0.10.55"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"bitflags 1.3.2",
2022-11-13 00:19:16 +01:00
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
2023-07-18 22:20:17 +02:00
version = "0.1.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2023-07-18 22:20:17 +02:00
version = "0.9.90"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2022-11-13 00:19:16 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "owo-colors"
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
2023-07-18 22:20:17 +02:00
"parking_lot_core 0.8.6",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
2023-07-18 22:20:17 +02:00
"parking_lot_core 0.9.8",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "parking_lot_core"
2023-07-18 22:20:17 +02:00
version = "0.8.6"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"instant",
"libc",
2023-07-18 22:20:17 +02:00
"redox_syscall 0.2.16",
2022-11-13 00:19:16 +01:00
"smallvec",
"winapi",
]
[[package]]
name = "parking_lot_core"
2023-07-18 22:20:17 +02:00
version = "0.9.8"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"libc",
2023-07-18 22:20:17 +02:00
"redox_syscall 0.3.5",
2022-11-13 00:19:16 +01:00
"smallvec",
2023-07-18 22:20:17 +02:00
"windows-targets",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "password-hash"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
dependencies = [
"base64ct",
"rand_core 0.6.4",
"subtle",
]
[[package]]
name = "pbkdf2"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
dependencies = [
2023-07-18 22:20:17 +02:00
"digest 0.10.7",
2022-11-13 00:19:16 +01:00
"hmac",
"password-hash",
2023-07-18 22:20:17 +02:00
"sha2 0.10.7",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "percent-encoding"
2023-07-18 22:20:17 +02:00
version = "2.3.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2022-11-13 00:19:16 +01:00
[[package]]
name = "pin-project"
2023-07-18 22:20:17 +02:00
version = "1.1.2"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
2022-11-13 00:19:16 +01:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-07-18 22:20:17 +02:00
version = "1.1.2"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "pin-project-lite"
2023-07-18 22:20:17 +02:00
version = "0.2.10"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
2022-11-13 00:19:16 +01:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkcs7"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f7364e6d0e236473de91e042395d71e0e64715f99a60620b014a4a4c7d1619b"
dependencies = [
"der",
"spki",
]
[[package]]
name = "pkg-config"
2023-07-18 22:20:17 +02:00
version = "0.3.27"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2022-11-13 00:19:16 +01:00
[[package]]
name = "poly1305"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
dependencies = [
"cpufeatures",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-crate"
2023-07-18 22:20:17 +02:00
version = "1.3.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2022-11-13 00:19:16 +01:00
dependencies = [
"once_cell",
2023-07-18 22:20:17 +02:00
"toml_edit",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "proc-macro2"
version = "0.4.30"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"unicode-xid",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "proc-macro2"
2023-07-18 22:20:17 +02:00
version = "1.0.66"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
2022-11-13 00:19:16 +01:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "prost"
2023-07-18 22:20:17 +02:00
version = "0.11.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
2022-11-13 00:19:16 +01:00
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
2023-07-18 22:20:17 +02:00
version = "0.11.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
2022-11-13 00:19:16 +01:00
dependencies = [
"anyhow",
"itertools",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 1.0.109",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "quote"
2023-07-18 22:20:17 +02:00
version = "0.6.13"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 0.4.30",
]
[[package]]
name = "quote"
version = "1.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0"
dependencies = [
"proc-macro2 1.0.66",
]
[[package]]
name = "rand"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
dependencies = [
"autocfg 0.1.8",
"libc",
"rand_chacha 0.1.1",
"rand_core 0.4.2",
"rand_hc 0.1.0",
"rand_isaac",
"rand_jitter",
"rand_os",
"rand_pcg",
"rand_xorshift",
"winapi",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2023-07-18 22:20:17 +02:00
"rand_hc 0.2.0",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "rand_chacha"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
dependencies = [
"autocfg 0.1.8",
"rand_core 0.3.1",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.4",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2022-11-13 00:19:16 +01:00
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
]
[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
dependencies = [
"rand_core 0.3.1",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "rand_isaac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "rand_jitter"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
dependencies = [
"libc",
"rand_core 0.4.2",
"winapi",
]
[[package]]
name = "rand_os"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
dependencies = [
"cloudabi",
"fuchsia-cprng",
"libc",
"rand_core 0.4.2",
"rdrand",
"winapi",
]
[[package]]
name = "rand_pcg"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
dependencies = [
"autocfg 0.1.8",
"rand_core 0.4.2",
]
[[package]]
name = "rand_xorshift"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
"rand_core 0.3.1",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
2023-07-18 22:20:17 +02:00
"bitflags 1.3.2",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "redox_syscall"
version = "0.3.5"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"bitflags 1.3.2",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "regex"
2023-07-18 22:20:17 +02:00
version = "1.9.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
2022-11-13 00:19:16 +01:00
dependencies = [
"aho-corasick",
"memchr",
2023-07-18 22:20:17 +02:00
"regex-automata 0.3.3",
"regex-syntax 0.7.4",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-07-18 22:20:17 +02:00
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.4",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "regex-syntax"
2023-07-18 22:20:17 +02:00
version = "0.6.29"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-11-13 00:19:16 +01:00
[[package]]
2023-07-18 22:20:17 +02:00
name = "regex-syntax"
version = "0.7.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
2022-11-13 00:19:16 +01:00
[[package]]
name = "reqwest"
2023-07-18 22:20:17 +02:00
version = "0.11.18"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"base64 0.21.2",
2022-11-13 00:19:16 +01:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
[[package]]
name = "ruma"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dc348e3a4a18abc4e97fffa5e2e623f6edd50ba3a1dd5f47eb249fea713b69f"
dependencies = [
"assign",
"js_int",
"js_option",
"ruma-client-api",
"ruma-common",
"ruma-federation-api",
]
[[package]]
name = "ruma-client-api"
version = "0.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1e72bc731b4dc8b569aa83915f13e419144b67110d858c65bb74aa05e2dc4b7"
dependencies = [
"assign",
"bytes",
"http",
"js_int",
"maplit",
"percent-encoding",
"ruma-common",
"serde",
"serde_json",
]
[[package]]
name = "ruma-common"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "716889595f4edc3cfeb94d9f122e413f73e37d7d80ea1c14196e1004241a3889"
dependencies = [
2023-07-18 22:20:17 +02:00
"base64 0.13.1",
2022-11-13 00:19:16 +01:00
"bytes",
"form_urlencoded",
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
"http",
2023-07-18 22:20:17 +02:00
"indexmap 1.9.3",
2022-11-13 00:19:16 +01:00
"itoa",
"js-sys",
"js_int",
"js_option",
"percent-encoding",
"rand 0.8.5",
"regex",
"ruma-identifiers-validation",
"ruma-macros",
"serde",
"serde_json",
"thiserror",
"tracing",
"url",
2023-07-18 22:20:17 +02:00
"uuid 1.4.1",
2022-11-13 00:19:16 +01:00
"wildmatch",
]
[[package]]
name = "ruma-federation-api"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f905d12f6144c7a754bd0339fa6893698c03d03a908abb20cc6eeb4ec7f9466"
dependencies = [
"js_int",
"ruma-common",
"serde",
"serde_json",
]
[[package]]
name = "ruma-identifiers-validation"
2023-07-18 22:20:17 +02:00
version = "0.9.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ebefdab34311af44d07cd2cd91c36cfe6a8c770647c6b00f6ab47f1186b2bb72"
2022-11-13 00:19:16 +01:00
dependencies = [
"js_int",
"thiserror",
]
[[package]]
name = "ruma-macros"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f82e91eb61cd86d9287303133ee55b54618eccb75a522cc22a42c15f5bda340"
dependencies = [
"once_cell",
"proc-macro-crate",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
2022-11-13 00:19:16 +01:00
"ruma-identifiers-validation",
"serde",
2023-07-18 22:20:17 +02:00
"syn 1.0.109",
2023-07-18 22:27:59 +02:00
"toml 0.5.11",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "rustc-demangle"
2023-07-18 22:20:17 +02:00
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustix"
version = "0.37.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys",
]
[[package]]
name = "rustix"
version = "0.38.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
dependencies = [
"bitflags 2.3.3",
"errno",
"libc",
"linux-raw-sys 0.4.3",
"windows-sys",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "ryu"
2023-07-18 22:20:17 +02:00
version = "1.0.15"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2022-11-13 00:19:16 +01:00
[[package]]
name = "schannel"
2023-07-18 22:20:17 +02:00
version = "0.1.22"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"windows-sys",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "scopeguard"
2023-07-18 22:20:17 +02:00
version = "1.2.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2022-11-13 00:19:16 +01:00
[[package]]
name = "security-framework"
2023-07-18 22:20:17 +02:00
version = "2.9.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"bitflags 1.3.2",
2022-11-13 00:19:16 +01:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-07-18 22:20:17 +02:00
version = "2.9.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2022-11-13 00:19:16 +01:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "serde"
2023-07-18 22:20:17 +02:00
version = "1.0.171"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
2022-11-13 00:19:16 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_bytes"
2023-07-18 22:20:17 +02:00
version = "0.11.12"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff"
2022-11-13 00:19:16 +01:00
dependencies = [
"serde",
]
[[package]]
name = "serde_derive"
2023-07-18 22:20:17 +02:00
version = "1.0.171"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "serde_json"
2023-07-18 22:20:17 +02:00
version = "1.0.103"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b"
2022-11-13 00:19:16 +01:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-07-18 22:27:59 +02:00
[[package]]
name = "serde_spanned"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
dependencies = [
"serde",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
]
[[package]]
name = "sha2"
2023-07-18 22:20:17 +02:00
version = "0.10.7"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"cpufeatures",
2023-07-18 22:20:17 +02:00
"digest 0.10.7",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2023-07-18 22:20:17 +02:00
version = "1.4.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-11-13 00:19:16 +01:00
dependencies = [
"libc",
]
[[package]]
name = "signature"
version = "1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
[[package]]
name = "slab"
2023-07-18 22:20:17 +02:00
version = "0.4.8"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "sled"
version = "0.34.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
dependencies = [
"crc32fast",
"crossbeam-epoch",
"crossbeam-utils",
"fs2",
"fxhash",
"libc",
"log",
"parking_lot 0.11.2",
]
[[package]]
name = "smallvec"
2023-07-18 22:20:17 +02:00
version = "1.11.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
2022-11-13 00:19:16 +01:00
[[package]]
name = "socket2"
2023-07-18 22:20:17 +02:00
version = "0.4.9"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-11-13 00:19:16 +01:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "spaceapi"
version = "0.8.1"
2023-07-18 22:20:17 +02:00
source = "git+https://github.com/Xiretza/spaceapi-rs?branch=icon-closed-fix#b86867e266f01f9a6bbde33d31920f0c9575cf3a"
2022-11-13 00:19:16 +01:00
dependencies = [
"log",
"serde",
"serde_json",
"thiserror",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "spki"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27"
dependencies = [
"der",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
2023-07-18 22:20:17 +02:00
version = "2.5.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2022-11-13 00:19:16 +01:00
[[package]]
name = "syn"
2023-07-18 22:20:17 +02:00
version = "0.15.44"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "syn"
version = "1.0.109"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"unicode-ident",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "syn"
version = "2.0.26"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"unicode-ident",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "tempfile"
version = "3.6.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
"cfg-if",
"fastrand",
"redox_syscall 0.3.5",
"rustix 0.37.23",
"windows-sys",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "thiserror"
2023-07-18 22:20:17 +02:00
version = "1.0.43"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
2022-11-13 00:19:16 +01:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-07-18 22:20:17 +02:00
version = "1.0.43"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "thread_local"
2023-07-18 22:20:17 +02:00
version = "1.1.7"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"cfg-if",
2022-11-13 00:19:16 +01:00
"once_cell",
]
[[package]]
name = "time"
2023-07-18 22:20:17 +02:00
version = "0.3.23"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:19:03 +02:00
"itoa",
"libc",
"num_threads",
"serde",
"time-core",
2023-07-18 22:19:03 +02:00
"time-macros",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "time-core"
2023-07-18 22:20:17 +02:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2023-07-18 22:19:03 +02:00
[[package]]
name = "time-macros"
2023-07-18 22:20:17 +02:00
version = "0.2.10"
2023-07-18 22:19:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
2023-07-18 22:19:03 +02:00
dependencies = [
"time-core",
]
2022-11-13 00:19:16 +01:00
[[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"
2023-07-18 22:20:17 +02:00
version = "0.1.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-11-13 00:19:16 +01:00
[[package]]
name = "tokio"
2023-07-18 22:20:17 +02:00
version = "1.29.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"autocfg 1.1.0",
"backtrace",
2022-11-13 00:19:16 +01:00
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot 0.12.1",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
2023-07-18 22:20:17 +02:00
"windows-sys",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "tokio-macros"
2023-07-18 22:20:17 +02:00
version = "2.1.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "tokio-native-tls"
2023-07-18 22:20:17 +02:00
version = "0.3.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2022-11-13 00:19:16 +01:00
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-util"
2023-07-18 22:20:17 +02:00
version = "0.7.8"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-11-13 00:19:16 +01:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "toml"
2023-07-18 22:20:17 +02:00
version = "0.5.11"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-11-13 00:19:16 +01:00
dependencies = [
"serde",
]
2023-07-18 22:27:59 +02:00
[[package]]
name = "toml"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "toml_datetime"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2023-07-18 22:27:59 +02:00
dependencies = [
"serde",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "toml_edit"
version = "0.19.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
dependencies = [
"indexmap 2.0.0",
2023-07-18 22:27:59 +02:00
"serde",
"serde_spanned",
2023-07-18 22:20:17 +02:00
"toml_datetime",
"winnow",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-07-18 22:20:17 +02:00
version = "0.1.26"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "tracing-core"
2023-07-18 22:20:17 +02:00
version = "0.1.31"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2022-11-13 00:19:16 +01:00
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-07-18 22:20:17 +02:00
version = "0.3.17"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2022-11-13 00:19:16 +01:00
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
2023-07-18 22:20:17 +02:00
version = "0.2.4"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-11-13 00:19:16 +01:00
[[package]]
name = "typenum"
2023-07-18 22:20:17 +02:00
version = "1.16.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-11-13 00:19:16 +01:00
[[package]]
name = "unicode-bidi"
2023-07-18 22:20:17 +02:00
version = "0.3.13"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-11-13 00:19:16 +01:00
[[package]]
name = "unicode-ident"
2023-07-18 22:20:17 +02:00
version = "1.0.11"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
2022-11-13 00:19:16 +01: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 = "unicode-xid"
2023-07-18 22:20:17 +02:00
version = "0.1.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2022-11-13 00:19:16 +01:00
[[package]]
name = "universal-hash"
2023-07-18 22:20:17 +02:00
version = "0.4.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
2022-11-13 00:19:16 +01:00
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "url"
2023-07-18 22:20:17 +02:00
version = "2.4.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
2022-11-13 00:19:16 +01:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
]
2023-07-18 22:20:17 +02:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "uuid"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
dependencies = [
"rand 0.6.5",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "uuid"
2023-07-18 22:20:17 +02:00
version = "1.4.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"getrandom 0.2.10",
2022-11-13 00:19:16 +01:00
"wasm-bindgen",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "vodozemac"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f20153a1c82ac5f1243b62e80f067ae608facc415c6ef82f88426a61c79886"
dependencies = [
"aes",
"arrayvec",
2023-07-18 22:20:17 +02:00
"base64 0.13.1",
2022-11-13 00:19:16 +01:00
"cbc",
"ed25519-dalek",
"hkdf",
"hmac",
"pkcs7",
"prost",
"rand 0.7.3",
"serde",
"serde_json",
2023-07-18 22:20:17 +02:00
"sha2 0.10.7",
2022-11-13 00:19:16 +01:00
"subtle",
"thiserror",
"x25519-dalek",
"zeroize",
]
[[package]]
name = "want"
2023-07-18 22:20:17 +02:00
version = "0.3.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2022-11-13 00:19:16 +01:00
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-07-18 22:20:17 +02:00
version = "0.2.87"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-07-18 22:20:17 +02:00
version = "0.2.87"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2022-11-13 00:19:16 +01:00
dependencies = [
"bumpalo",
"log",
"once_cell",
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-07-18 22:20:17 +02:00
version = "0.4.37"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2022-11-13 00:19:16 +01:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-07-18 22:20:17 +02:00
version = "0.2.87"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"quote 1.0.31",
2022-11-13 00:19:16 +01:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-07-18 22:20:17 +02:00
version = "0.2.87"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-07-18 22:20:17 +02:00
version = "0.2.87"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2022-11-13 00:19:16 +01:00
[[package]]
name = "wasm-timer"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [
"futures",
"js-sys",
"parking_lot 0.11.2",
"pin-utils",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "web-sys"
2023-07-18 22:20:17 +02:00
version = "0.3.64"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2022-11-13 00:19:16 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "wildmatch"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[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-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"windows-targets",
2022-11-13 00:19:16 +01:00
]
[[package]]
2023-07-18 22:20:17 +02:00
name = "windows-targets"
version = "0.48.1"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2022-11-13 00:19:16 +01:00
dependencies = [
"windows_aarch64_gnullvm",
2023-07-18 22:20:17 +02:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-13 00:19:16 +01:00
"windows_x86_64_gnullvm",
2023-07-18 22:20:17 +02:00
"windows_x86_64_msvc",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_i686_gnu"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_i686_msvc"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_x86_64_gnu"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-11-13 00:19:16 +01:00
[[package]]
name = "windows_x86_64_msvc"
2023-07-18 22:20:17 +02:00
version = "0.48.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-11-13 00:19:16 +01:00
[[package]]
2023-07-18 22:20:17 +02:00
name = "winnow"
version = "0.5.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7"
dependencies = [
"memchr",
]
2022-11-13 00:19:16 +01:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[package]]
name = "x25519-dalek"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077"
dependencies = [
"curve25519-dalek",
"rand_core 0.5.1",
"serde",
"zeroize",
]
[[package]]
name = "xdg"
2023-07-18 22:20:17 +02:00
version = "2.5.0"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "688597db5a750e9cad4511cb94729a078e274308099a0382b5b8203bbc767fee"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"home",
2022-11-13 00:19:16 +01:00
]
[[package]]
name = "zeroize"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
2023-07-18 22:20:17 +02:00
version = "1.4.2"
2022-11-13 00:19:16 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-18 22:20:17 +02:00
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2022-11-13 00:19:16 +01:00
dependencies = [
2023-07-18 22:20:17 +02:00
"proc-macro2 1.0.66",
"quote 1.0.31",
"syn 2.0.26",
2022-11-13 00:19:16 +01:00
]