GeneIT/geneit_backend/Cargo.lock

3321 lines
80 KiB
Plaintext
Raw Normal View History

2023-05-24 11:52:24 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-codec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
dependencies = [
2023-07-04 16:47:37 +00:00
"bitflags 1.3.2",
2023-05-24 12:38:18 +00:00
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
]
2023-06-06 13:47:30 +00:00
[[package]]
name = "actix-cors"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e"
dependencies = [
"actix-utils",
"actix-web",
"derive_more",
"futures-util",
"log",
"once_cell",
"smallvec",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-http"
2023-09-04 00:32:51 +00:00
version = "3.4.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:32:51 +00:00
checksum = "a92ef85799cba03f76e4f7c10f533e66d87c9a7e7055f3391f09000ad8351bc9"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"ahash 0.8.3",
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-09-04 00:32:51 +00:00
"bitflags 2.3.3",
2023-05-24 12:38:18 +00:00
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
"tokio",
"tokio-util",
"tracing",
2023-08-17 15:37:44 +00:00
"zstd 0.12.3+zstd.1.5.2",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "actix-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
"syn 1.0.109",
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "actix-multipart"
version = "0.6.1"
2023-08-05 17:15:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b960e2aea75f49c8f069108063d12a48d329fc8b60b786dfc7552a9d5918d2d"
2023-08-05 17:15:52 +00:00
dependencies = [
"actix-multipart-derive",
"actix-utils",
"actix-web",
"bytes",
"derive_more",
"futures-core",
"futures-util",
"httparse",
"local-waker",
"log",
"memchr",
"mime",
"serde",
"serde_json",
"serde_plain",
"tempfile",
"tokio",
]
[[package]]
name = "actix-multipart-derive"
version = "0.6.1"
2023-08-05 17:15:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a0a77f836d869f700e5b47ac7c3c8b9c8bc82e4aec861954c6198abee3ebd4d"
2023-08-05 17:15:52 +00:00
dependencies = [
"darling",
2023-08-05 17:15:52 +00:00
"parse-size",
"proc-macro2",
"quote",
"syn 2.0.29",
2023-08-05 17:15:52 +00:00
]
2023-05-24 14:19:46 +00:00
[[package]]
name = "actix-remote-ip"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7629b357d4705cf3f1e31f989f48ecd56027112f7d52dcf06dd96ee197065f8e"
dependencies = [
"actix-web",
"futures-util",
"log",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-router"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
"http",
"regex",
"serde",
"tracing",
]
[[package]]
name = "actix-rt"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
"num_cpus",
2023-09-04 00:32:51 +00:00
"socket2 0.4.9",
2023-05-24 12:38:18 +00:00
"tokio",
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
"futures-core",
"paste",
"pin-project-lite",
]
[[package]]
name = "actix-utils"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
dependencies = [
"local-waker",
"pin-project-lite",
]
[[package]]
name = "actix-web"
2023-09-04 00:32:51 +00:00
version = "4.4.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:32:51 +00:00
checksum = "0e4a5b5e29603ca8c94a77c65cf874718ceb60292c5a5c3e5f4ace041af462b9"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
2023-09-04 00:32:51 +00:00
"ahash 0.8.3",
2023-05-24 12:38:18 +00:00
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
2023-09-04 00:32:51 +00:00
"socket2 0.5.3",
2023-05-24 12:38:18 +00:00
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
dependencies = [
"actix-router",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "addr2line"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
dependencies = [
"gimli",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2023-08-17 15:37:44 +00:00
[[package]]
name = "aes"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2023-07-04 16:47:37 +00:00
version = "1.0.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
2023-05-24 12:38:18 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "anstream"
2023-09-05 00:35:43 +00:00
version = "0.5.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 00:35:43 +00:00
checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-07-04 16:47:37 +00:00
version = "1.0.1"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
2023-05-24 11:52:24 +00:00
[[package]]
name = "anstyle-parse"
2023-07-04 16:47:37 +00:00
version = "0.2.1"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
2023-05-24 11:52:24 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "anstyle-wincon"
2023-09-05 00:35:43 +00:00
version = "2.1.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 00:35:43 +00:00
checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstyle",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 11:52:24 +00:00
]
2023-05-24 14:19:46 +00:00
[[package]]
name = "anyhow"
2023-08-26 00:31:54 +00:00
version = "1.0.75"
2023-05-24 14:19:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 00:31:54 +00:00
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
2023-05-24 14:19:46 +00:00
2023-05-25 07:22:49 +00:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2023-08-05 12:49:17 +00:00
[[package]]
name = "async-trait"
version = "0.1.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09"
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-05 12:49:17 +00:00
]
[[package]]
name = "attohttpc"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
dependencies = [
"http",
"log",
"native-tls",
"serde",
"serde_json",
"url",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-08-05 12:49:17 +00:00
[[package]]
name = "aws-creds"
version = "0.34.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5"
dependencies = [
"attohttpc",
"dirs",
"log",
"quick-xml",
"rust-ini",
"serde",
"thiserror",
"time",
"url",
]
[[package]]
name = "aws-region"
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "056557a61427d0e5ba29dd931031c8ffed4ee7a550e7cd55692a9d8deb0a9dba"
dependencies = [
"thiserror",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "backtrace"
version = "0.3.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-05-24 12:38:18 +00:00
[[package]]
name = "base64"
2023-07-04 16:47:37 +00:00
version = "0.21.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2023-05-24 12:38:18 +00:00
2023-08-17 15:37:44 +00:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2023-05-31 11:33:26 +00:00
[[package]]
name = "bcrypt"
2023-08-04 17:03:46 +00:00
version = "0.15.0"
2023-05-31 11:33:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 17:03:46 +00:00
checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3"
2023-05-31 11:33:26 +00:00
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-05-31 11:33:26 +00:00
"blowfish",
"getrandom",
"subtle",
"zeroize",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "bit_field"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
2023-05-24 11:52:24 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-04 16:47:37 +00:00
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
2023-05-24 12:38:18 +00:00
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "blowfish"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
dependencies = [
"byteorder",
"cipher",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "brotli"
version = "3.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "bumpalo"
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2023-08-07 09:07:24 +00:00
[[package]]
name = "bytemuck"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
2023-05-24 11:52:24 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2023-05-24 12:38:18 +00:00
[[package]]
name = "bytes"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]]
name = "bytestring"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
dependencies = [
"bytes",
]
2023-08-17 15:37:44 +00:00
[[package]]
name = "bzip2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "cc"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2023-05-24 12:38:18 +00:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-05-24 11:52:24 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "chrono"
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
dependencies = [
"android-tzdata",
"iana-time-zone",
"num-traits",
"serde",
"winapi",
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "clap"
2023-09-13 00:28:34 +00:00
version = "4.4.3"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-13 00:28:34 +00:00
checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6"
2023-05-24 11:52:24 +00:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2023-09-05 00:35:43 +00:00
version = "4.4.2"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 00:35:43 +00:00
checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2023-09-05 00:35:43 +00:00
version = "4.4.2"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 00:35:43 +00:00
checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
2023-05-24 11:52:24 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "clap_lex"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
2023-08-07 09:07:24 +00:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2023-05-24 11:52:24 +00:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-05-26 15:55:19 +00:00
[[package]]
name = "combine"
version = "4.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
dependencies = [
"bytes",
"memchr",
]
2023-08-17 15:37:44 +00:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2023-05-24 12:38:18 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2023-05-30 13:12:58 +00: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"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2023-05-24 12:38:18 +00:00
[[package]]
name = "cpufeatures"
2023-07-04 16:47:37 +00:00
version = "0.2.8"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
2023-05-24 12:38:18 +00: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",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
dependencies = [
"cfg-if",
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2023-05-24 12:38:18 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "csv"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086"
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
[[package]]
name = "darling"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
dependencies = [
"darling_core",
"darling_macro",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "darling_core"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "darling_macro"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
dependencies = [
"darling_core",
2023-08-04 17:03:46 +00:00
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-04 17:03:46 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
"syn 1.0.109",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "diesel"
2023-11-15 00:24:19 +00:00
version = "2.1.4"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-15 00:24:19 +00:00
checksum = "62c6fcf842f17f8c78ecf7c81d75c5ce84436b41ee07e03f490fbb5f5a8731d8"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"bitflags 2.3.3",
2023-05-24 11:52:24 +00:00
"byteorder",
"diesel_derives",
"itoa",
"pq-sys",
]
[[package]]
name = "diesel_derives"
2023-10-06 00:04:47 +00:00
version = "2.1.2"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-06 00:04:47 +00:00
checksum = "ef8337737574f55a468005a83499da720f20c65586241ffea339db9ecdfd2b44"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"diesel_table_macro_syntax",
2023-05-24 11:52:24 +00:00
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-07-04 16:47:37 +00:00
]
[[package]]
name = "diesel_table_macro_syntax"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5"
dependencies = [
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "digest"
version = "0.10.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"block-buffer",
"crypto-common",
2023-08-05 12:49:17 +00:00
"subtle",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
2023-05-24 11:52:24 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2023-08-07 09:07:24 +00:00
[[package]]
name = "either"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2023-05-30 13:12:58 +00:00
[[package]]
name = "email-encoding"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbfb21b9878cf7a348dcb8559109aabc0ec40d69924bd706fa5149846c4fef75"
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-05-30 13:12:58 +00:00
"memchr",
]
[[package]]
name = "email_address"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112"
2023-08-04 17:03:46 +00:00
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "encoding_rs"
version = "0.8.32"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"cfg-if",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "env_logger"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "errno"
2023-05-24 11:52:24 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 12:38:18 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "errno-dragonfly"
version = "0.1.2"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"cc",
2023-05-24 11:52:24 +00:00
"libc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "exr"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18"
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
"miniz_oxide",
"rayon-core",
"smallvec",
"zune-inflate",
]
2023-05-25 07:22:49 +00:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2023-08-18 11:41:20 +00:00
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
2023-08-07 09:07:24 +00:00
[[package]]
name = "fdeflate"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
dependencies = [
"simd-adler32",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "flate2"
version = "1.0.26"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"crc32fast",
"miniz_oxide",
2023-05-24 11:52:24 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "flume"
version = "0.10.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "fnv"
version = "1.0.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-05-24 11:52:24 +00:00
2023-05-30 13:12:58 +00:00
[[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"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "form_urlencoded"
2023-07-04 16:47:37 +00:00
version = "1.2.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2023-05-24 12:38:18 +00:00
dependencies = [
"percent-encoding",
]
2023-05-24 11:52:24 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "futures"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "futures-channel"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
2023-08-05 12:49:17 +00:00
"futures-sink",
2023-06-02 09:49:18 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-core"
version = "0.3.28"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2023-05-24 11:52:24 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "futures-executor"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "futures-io"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2023-05-24 14:19:46 +00:00
[[package]]
name = "futures-macro"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-05-24 14:19:46 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-sink"
version = "0.3.28"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-task"
version = "0.3.28"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-08-05 12:49:17 +00:00
"futures-channel",
2023-05-24 12:38:18 +00:00
"futures-core",
2023-05-30 13:12:58 +00:00
"futures-io",
2023-05-24 14:19:46 +00:00
"futures-macro",
2023-08-05 12:49:17 +00:00
"futures-sink",
2023-05-24 12:38:18 +00:00
"futures-task",
2023-05-30 13:12:58 +00:00
"memchr",
2023-05-24 12:38:18 +00:00
"pin-project-lite",
"pin-utils",
2023-05-24 14:19:46 +00:00
"slab",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "geneit_backend"
version = "0.1.0"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-06-06 13:47:30 +00:00
"actix-cors",
2023-08-05 17:15:52 +00:00
"actix-multipart",
2023-05-24 14:19:46 +00:00
"actix-remote-ip",
2023-05-24 12:38:18 +00:00
"actix-web",
2023-05-24 14:19:46 +00:00
"anyhow",
"base64 0.21.2",
2023-05-31 11:33:26 +00:00
"bcrypt",
2023-05-24 12:38:18 +00:00
"clap",
"diesel",
"env_logger",
2023-05-31 13:52:49 +00:00
"futures-util",
2023-08-07 12:53:44 +00:00
"httpdate",
2023-08-07 09:07:24 +00:00
"image",
2023-05-24 12:38:18 +00:00
"lazy_static",
2023-05-30 13:12:58 +00:00
"lettre",
2023-06-02 09:49:18 +00:00
"light-openid",
2023-05-24 12:38:18 +00:00
"log",
2023-05-25 07:22:49 +00:00
"mailchecker",
2023-08-17 15:37:44 +00:00
"mime_guess",
2023-05-30 13:12:58 +00:00
"rand",
2023-05-26 15:55:19 +00:00
"redis",
2023-08-05 12:49:17 +00:00
"rust-s3",
2023-08-04 17:03:46 +00:00
"rust_iso3166",
2023-05-24 12:38:18 +00:00
"serde",
2023-05-26 15:55:19 +00:00
"serde_json",
2023-08-04 17:03:46 +00:00
"serde_with",
2023-08-07 09:07:24 +00:00
"sha2",
2023-08-18 11:41:20 +00:00
"tempfile",
2023-06-02 13:04:49 +00:00
"thiserror",
2023-08-07 09:07:24 +00:00
"uuid",
2023-08-17 15:37:44 +00:00
"zip",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "generic-array"
version = "0.14.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"typenum",
2023-05-24 11:52:24 +00:00
"version_check",
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "getrandom"
2023-07-04 16:47:37 +00:00
version = "0.2.10"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"cfg-if",
2023-08-07 09:07:24 +00:00
"js-sys",
2023-05-24 12:38:18 +00:00
"libc",
"wasi",
2023-08-07 09:07:24 +00:00
"wasm-bindgen",
]
[[package]]
name = "gif"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
dependencies = [
"color_quant",
"weezl",
2023-05-24 11:52:24 +00:00
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "gimli"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "h2"
2023-07-04 16:47:37 +00:00
version = "0.3.20"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
2023-05-24 11:52:24 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "half"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
dependencies = [
"crunchy",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "hashbrown"
version = "0.12.3"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-08-05 12:49:17 +00:00
dependencies = [
"ahash 0.7.6",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
2023-07-04 16:47:37 +00:00
version = "0.3.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2023-05-24 12:38:18 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2023-08-05 12:49:17 +00:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "http"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2023-06-02 09:49:18 +00:00
[[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",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
2023-08-26 00:32:00 +00:00
version = "1.0.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 00:32:00 +00:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2023-05-24 12:38:18 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2023-06-02 09:49:18 +00:00
[[package]]
name = "hyper"
2023-07-04 16:47:37 +00:00
version = "0.14.27"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2023-06-02 09:49:18 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2023-09-04 00:32:51 +00:00
"socket2 0.4.9",
2023-06-02 09:49:18 +00:00
"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",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "iana-time-zone"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2023-05-24 12:38:18 +00:00
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "idna"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "image"
version = "0.24.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"exr",
"gif",
"jpeg-decoder",
"num-rational",
"num-traits",
"png",
"qoi",
"tiff",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown",
2023-08-04 17:03:46 +00:00
"serde",
2023-05-24 12:38:18 +00:00
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "ipnet"
2023-07-04 16:47:37 +00:00
version = "2.8.0"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2023-06-02 09:49:18 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "is-terminal"
2023-07-04 16:47:37 +00:00
version = "0.4.8"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "24fddda5af7e54bf7da53067d6e802dbcc381d0a8eef629df528e3ebf68755cb"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"hermit-abi",
2023-08-18 11:41:20 +00:00
"rustix",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "itoa"
2023-07-04 16:47:37 +00:00
version = "1.0.8"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
2023-05-24 12:38:18 +00:00
[[package]]
name = "jobserver"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "jpeg-decoder"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
dependencies = [
"rayon",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "js-sys"
2023-07-04 16:47:37 +00:00
version = "0.3.64"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2023-06-02 09:49:18 +00:00
dependencies = [
"wasm-bindgen",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2023-08-07 09:07:24 +00:00
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2023-05-30 13:12:58 +00:00
[[package]]
name = "lettre"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76bd09637ae3ec7bd605b8e135e757980b3968430ff2b1a4a94fb7769e50166d"
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-05-30 13:12:58 +00:00
"email-encoding",
"email_address",
2023-08-18 11:41:20 +00:00
"fastrand 1.9.0",
2023-05-30 13:12:58 +00:00
"futures-util",
"hostname",
"httpdate",
2023-07-04 16:47:37 +00:00
"idna 0.3.0",
2023-05-30 13:12:58 +00:00
"mime",
"native-tls",
"nom",
"once_cell",
"quoted_printable",
2023-09-04 00:32:51 +00:00
"socket2 0.4.9",
2023-05-30 13:12:58 +00:00
"tokio",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "libc"
2023-07-04 16:47:37 +00:00
version = "0.2.147"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2023-05-24 12:38:18 +00:00
2023-06-02 09:49:18 +00:00
[[package]]
name = "light-openid"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608aa1b7148a6eeab631c6267deca33407ff851ab50eea115e52c13a9bb184ee"
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-06-02 09:49:18 +00:00
"log",
"reqwest",
"serde",
"serde_json",
"urlencoding",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
2023-05-24 12:38:18 +00:00
[[package]]
name = "local-channel"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
[[package]]
name = "lock_api"
2023-07-04 16:47:37 +00:00
version = "0.4.10"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2023-05-24 12:38:18 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-07-04 16:47:37 +00:00
version = "0.4.19"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2023-05-24 12:38:18 +00:00
2023-05-25 07:22:49 +00:00
[[package]]
name = "mailchecker"
version = "5.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c64fa7af9860896bdfe496f323ac278f256006fd248dd7730e37c5faa648b05"
dependencies = [
"fast_chemail",
"once_cell",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
2023-08-05 12:49:17 +00:00
[[package]]
name = "maybe-async"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1b8c13cb1f814b634a96b2c725449fe7ed464a7b8781de8688be5ffbd3f305"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2023-05-24 12:38:18 +00:00
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2023-08-07 09:07:24 +00:00
[[package]]
name = "memoffset"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-08-17 15:37:44 +00:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "minidom"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f45614075738ce1b77a1768912a60c0227525971b03e09122a05b8a34a2a6278"
dependencies = [
"rxml",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-05-24 12:38:18 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
2023-08-07 09:07:24 +00:00
"simd-adler32",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "mio"
2023-07-04 16:47:37 +00:00
version = "0.8.8"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2023-05-24 12:38:18 +00:00
dependencies = [
"libc",
"log",
"wasi",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 12:38:18 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
2023-05-30 13:12:58 +00: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 = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "num-traits"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
dependencies = [
"autocfg",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "num_cpus"
2023-07-04 16:47:37 +00:00
version = "1.16.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"hermit-abi",
2023-05-24 12:38:18 +00:00
"libc",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "object"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
dependencies = [
"memchr",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "once_cell"
2023-07-04 16:47:37 +00:00
version = "1.18.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2023-05-24 12:38:18 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "openssl"
2023-07-04 16:47:37 +00:00
version = "0.10.55"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2023-05-30 13:12:58 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"bitflags 1.3.2",
2023-05-30 13:12:58 +00:00
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-05-30 13:12:58 +00: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-04 16:47:37 +00:00
version = "0.9.90"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2023-05-30 13:12:58 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
"hashbrown",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-07-04 16:47:37 +00:00
version = "0.9.8"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2023-05-24 12:38:18 +00:00
dependencies = [
"cfg-if",
"libc",
2023-08-04 17:03:46 +00:00
"redox_syscall 0.3.5",
2023-05-24 12:38:18 +00:00
"smallvec",
2023-07-04 16:47:37 +00:00
"windows-targets",
2023-05-24 12:38:18 +00:00
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "parse-size"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae"
2023-08-17 15:37:44 +00: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",
"subtle",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "paste"
2023-07-04 16:47:37 +00:00
version = "1.0.13"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35"
2023-05-24 12:38:18 +00:00
2023-08-17 15:37:44 +00:00
[[package]]
name = "pbkdf2"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
dependencies = [
"digest",
"hmac",
"password-hash",
"sha2",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "percent-encoding"
2023-07-04 16:47:37 +00:00
version = "2.3.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2023-05-24 12:38:18 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "phf"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
"phf_macros",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_macros"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "phf_shared"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
"siphasher",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "pin-project"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-07 09:07:24 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "pin-project-lite"
2023-07-04 16:47:37 +00:00
version = "0.2.10"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
2023-05-24 12:38:18 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-08-07 09:07:24 +00:00
[[package]]
name = "png"
version = "0.17.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
dependencies = [
"bitflags 1.3.2",
"crc32fast",
"fdeflate",
"flate2",
"miniz_oxide",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "pq-sys"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c0052426df997c0cbd30789eb44ca097e3541717a7b8fa36b1c464ee7edebd"
dependencies = [
"vcpkg",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "prettytable-rs"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
dependencies = [
"csv",
"encode_unicode",
"is-terminal",
"lazy_static",
"term",
"unicode-width",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "proc-macro2"
2023-07-04 16:47:37 +00:00
version = "1.0.63"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
2023-05-24 12:38:18 +00:00
dependencies = [
"unicode-ident",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
"bytemuck",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "quick-xml"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
dependencies = [
"memchr",
"serde",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "quote"
2023-07-04 16:47:37 +00:00
version = "1.0.29"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
2023-05-24 12:38:18 +00:00
dependencies = [
"proc-macro2",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "quoted_printable"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3866219251662ec3b26fc217e3e05bf9c4f84325234dfb96bf0bf840889e49"
2023-05-24 12:38:18 +00:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[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",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "rayon"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2023-05-26 15:55:19 +00:00
[[package]]
name = "redis"
2023-09-02 00:27:12 +00:00
version = "0.23.3"
2023-05-26 15:55:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 00:27:12 +00:00
checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba"
2023-05-26 15:55:19 +00:00
dependencies = [
"combine",
"itoa",
"percent-encoding",
"ryu",
"sha1_smol",
2023-09-04 00:32:51 +00:00
"socket2 0.4.9",
2023-05-26 15:55:19 +00:00
"url",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags 1.3.2",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-07-04 16:47:37 +00:00
"bitflags 1.3.2",
2023-05-30 13:12:58 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall 0.2.16",
"thiserror",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "regex"
2023-07-04 16:47:37 +00:00
version = "1.8.4"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
2023-05-24 12:38:18 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2023-06-02 09:49:18 +00:00
[[package]]
name = "reqwest"
version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-06-02 09:49:18 +00: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",
2023-08-05 12:49:17 +00:00
"tokio-util",
2023-06-02 09:49:18 +00:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
2023-08-05 12:49:17 +00:00
"wasm-streams",
2023-06-02 09:49:18 +00:00
"web-sys",
"winreg",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if",
"ordered-multimap",
]
[[package]]
name = "rust-s3"
version = "0.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b2ac5ff6acfbe74226fa701b5ef793aaa054055c13ebb7060ad36942956e027"
dependencies = [
"async-trait",
"aws-creds",
"aws-region",
"base64 0.13.1",
"bytes",
"cfg-if",
"futures",
"hex",
"hmac",
"http",
"log",
"maybe-async",
"md5",
"minidom",
"percent-encoding",
"quick-xml",
"reqwest",
"serde",
"serde_derive",
"sha2",
"thiserror",
"time",
"tokio",
"tokio-stream",
"url",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "rust_iso3166"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e19f23f46e5d2f3f1e917ecf5cc988e23ba7fc2a2ce3ef09cb17033842d0ef8"
dependencies = [
"js-sys",
"phf",
"prettytable-rs",
"wasm-bindgen",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2023-05-24 12:38:18 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "rustix"
version = "0.38.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aabcb0461ebd01d6b79945797c27f8529082226cb630a9865a71870ff63532a4"
dependencies = [
"bitflags 2.3.3",
"errno",
"libc",
2023-08-18 11:41:20 +00:00
"linux-raw-sys",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 12:38:18 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "rustversion"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2023-08-05 12:49:17 +00:00
[[package]]
name = "rxml"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a98f186c7a2f3abbffb802984b7f1dfd65dac8be1aafdaabbca4137f53f0dff7"
dependencies = [
"bytes",
"rxml_validation",
"smartstring",
]
[[package]]
name = "rxml_validation"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530"
2023-05-24 12:38:18 +00:00
[[package]]
name = "ryu"
2023-07-04 16:47:37 +00:00
version = "1.0.14"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
2023-05-24 12:38:18 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "schannel"
2023-07-04 16:47:37 +00:00
version = "0.1.22"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2023-05-30 13:12:58 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-30 13:12:58 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2023-05-30 13:12:58 +00:00
[[package]]
name = "security-framework"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
dependencies = [
2023-07-04 16:47:37 +00:00
"bitflags 1.3.2",
2023-05-30 13:12:58 +00:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
dependencies = [
"core-foundation-sys",
"libc",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "semver"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
[[package]]
name = "serde"
2023-08-29 00:30:38 +00:00
version = "1.0.188"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 00:30:38 +00:00
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
2023-05-24 12:38:18 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-08-29 00:30:38 +00:00
version = "1.0.188"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 00:30:38 +00:00
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
2023-05-24 12:38:18 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "serde_json"
version = "1.0.108"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2023-05-24 12:38:18 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "serde_plain"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae"
dependencies = [
"serde",
]
2023-05-24 12:38:18 +00: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",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "serde_with"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21e47d95bc83ed33b2ecf84f4187ad1ab9685d18ff28db000c99deac8ce180e3"
dependencies = [
2023-08-05 12:49:17 +00:00
"base64 0.21.2",
2023-08-04 17:03:46 +00:00
"chrono",
"hex",
"indexmap",
"serde",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea3cee93715c2e266b9338b7544da68a9f24e227722ba482bd1c024367c77c65"
dependencies = [
"darling",
2023-08-04 17:03:46 +00:00
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-08-04 17:03:46 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "sha1"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2023-05-26 15:55:19 +00:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2023-08-05 12:49:17 +00:00
[[package]]
name = "sha2"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2023-08-04 17:03:46 +00:00
[[package]]
name = "siphasher"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2023-05-24 12:38:18 +00:00
[[package]]
name = "slab"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2023-08-05 12:49:17 +00:00
[[package]]
name = "smartstring"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
dependencies = [
"autocfg",
"static_assertions",
"version_check",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "socket2"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
2023-05-24 11:52:24 +00:00
]
2023-09-04 00:32:51 +00:00
[[package]]
name = "socket2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
dependencies = [
"libc",
"windows-sys",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2023-05-24 11:52:24 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2023-05-31 11:33:26 +00:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-05-24 11:52:24 +00:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-08-29 00:30:38 +00:00
version = "2.0.29"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-29 00:30:38 +00:00
checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
2023-05-24 11:52:24 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "tempfile"
2023-09-10 00:27:25 +00:00
version = "3.8.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 00:27:25 +00:00
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
2023-05-30 13:12:58 +00:00
dependencies = [
"cfg-if",
2023-08-18 11:41:20 +00:00
"fastrand 2.0.0",
2023-08-04 17:03:46 +00:00
"redox_syscall 0.3.5",
2023-08-18 11:41:20 +00:00
"rustix",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-30 13:12:58 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "term"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [
"dirs-next",
"rustversion",
"winapi",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "termcolor"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
"winapi-util",
]
2023-06-02 13:04:49 +00:00
[[package]]
name = "thiserror"
2023-09-03 00:26:17 +00:00
version = "1.0.48"
2023-06-02 13:04:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-03 00:26:17 +00:00
checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
2023-06-02 13:04:49 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-09-03 00:26:17 +00:00
version = "1.0.48"
2023-06-02 13:04:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-03 00:26:17 +00:00
checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
2023-06-02 13:04:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-06-02 13:04:49 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "tiff"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471"
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "time"
2023-07-04 16:47:37 +00:00
version = "0.3.22"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
2023-05-24 12:38:18 +00:00
dependencies = [
"itoa",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
[[package]]
name = "time-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
dependencies = [
"time-core",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2023-07-04 16:47:37 +00:00
version = "1.29.1"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
2023-05-24 12:38:18 +00:00
dependencies = [
"autocfg",
2023-07-04 16:47:37 +00:00
"backtrace",
2023-05-24 12:38:18 +00:00
"bytes",
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2023-09-04 00:32:51 +00:00
"socket2 0.4.9",
2023-07-04 16:47:37 +00:00
"windows-sys",
2023-05-24 12:38:18 +00:00
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "tokio-stream"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "tokio-util"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2023-05-24 12:38:18 +00:00
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
"log",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
dependencies = [
"once_cell",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "try-lock"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2023-05-24 12:38:18 +00:00
[[package]]
name = "typenum"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2023-08-17 15:37:44 +00:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2023-05-24 11:52:24 +00:00
[[package]]
name = "unicode-ident"
2023-07-04 16:47:37 +00:00
version = "1.0.10"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
2023-05-24 11:52:24 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2023-05-24 12:38:18 +00:00
[[package]]
name = "url"
2023-07-04 16:47:37 +00:00
version = "2.4.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
2023-05-24 12:38:18 +00:00
dependencies = [
"form_urlencoded",
2023-07-04 16:47:37 +00:00
"idna 0.4.0",
2023-05-24 12:38:18 +00:00
"percent-encoding",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "urlencoding"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
2023-05-24 11:52:24 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2023-08-07 09:07:24 +00:00
[[package]]
name = "uuid"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
dependencies = [
"getrandom",
]
2023-05-24 11:52:24 +00:00
[[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"
2023-06-02 09:49:18 +00:00
[[package]]
name = "want"
2023-07-04 16:47:37 +00:00
version = "0.3.1"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2023-06-02 09:49:18 +00:00
dependencies = [
"try-lock",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2023-06-02 09:49:18 +00:00
[[package]]
name = "wasm-bindgen"
2023-07-04 16:47:37 +00:00
version = "0.2.87"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2023-06-02 09:49:18 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-07-04 16:47:37 +00:00
version = "0.2.87"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2023-06-02 09:49:18 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-06-02 09:49:18 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-07-04 16:47:37 +00:00
version = "0.4.37"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2023-06-02 09:49:18 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-07-04 16:47:37 +00:00
version = "0.2.87"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2023-06-02 09:49:18 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-07-04 16:47:37 +00:00
version = "0.2.87"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2023-06-02 09:49:18 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-08-29 00:30:38 +00:00
"syn 2.0.29",
2023-06-02 09:49:18 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-07-04 16:47:37 +00:00
version = "0.2.87"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2023-06-02 09:49:18 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "web-sys"
2023-07-04 16:47:37 +00:00
version = "0.3.64"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2023-06-02 09:49:18 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "weezl"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
2023-05-24 12:38:18 +00:00
[[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-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-08-04 17:03:46 +00:00
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-07-04 16:47:37 +00:00
"windows-targets",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "windows-targets"
2023-07-04 16:47:37 +00:00
version = "0.48.1"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2023-05-24 12:38:18 +00:00
2023-06-02 09:49:18 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "zeroize"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
2023-08-17 15:37:44 +00:00
[[package]]
name = "zip"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
dependencies = [
"aes",
"byteorder",
"bzip2",
"constant_time_eq",
"crc32fast",
"crossbeam-utils",
"flate2",
"hmac",
"pbkdf2",
"sha1",
"time",
"zstd 0.11.2+zstd.1.5.2",
]
[[package]]
name = "zstd"
version = "0.11.2+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
dependencies = [
"zstd-safe 5.0.2+zstd.1.5.2",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "zstd"
version = "0.12.3+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
dependencies = [
2023-08-17 15:37:44 +00:00
"zstd-safe 6.0.5+zstd.1.5.4",
]
[[package]]
name = "zstd-safe"
version = "5.0.2+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
dependencies = [
"libc",
"zstd-sys",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "zstd-safe"
version = "6.0.5+zstd.1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.8+zstd.1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "zune-inflate"
version = "0.2.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
dependencies = [
"simd-adler32",
]