piped-proxy/Cargo.lock

1997 lines
49 KiB
Plaintext
Raw Normal View History

2022-11-02 16:39:52 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "actix-codec"
2023-05-15 03:12:58 +00:00
version = "0.5.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2022-11-02 16:39:52 +00:00
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
2023-05-15 03:12:58 +00:00
"tracing",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "actix-http"
2023-03-25 15:25:51 +00:00
version = "3.3.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
2022-11-02 16:39:52 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2023-03-25 15:25:51 +00:00
"ahash 0.8.3",
"base64",
2022-11-02 16:39:52 +00:00
"bitflags",
"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",
2023-01-21 20:22:04 +00:00
"tokio",
"tokio-util",
2022-11-02 16:39:52 +00:00
"tracing",
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
2023-03-27 22:57:32 +00:00
"syn 1.0.109",
2022-11-02 16:39:52 +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"
2023-03-25 15:25:51 +00:00
version = "2.8.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2022-11-02 16:39:52 +00:00
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2023-03-25 15:25:51 +00:00
version = "2.2.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
2022-11-02 16:39:52 +00:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
"num_cpus",
"socket2",
"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-02-26 07:00:12 +00:00
version = "4.3.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 07:00:12 +00:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
2022-11-02 16:39:52 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
2023-03-25 15:25:51 +00:00
"ahash 0.7.6",
2022-11-02 16:39:52 +00:00
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
"http",
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
2023-02-26 07:00:12 +00:00
version = "4.2.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 07:00:12 +00:00
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
2022-11-02 16:39:52 +00:00
dependencies = [
"actix-router",
"proc-macro2",
"quote",
2023-03-27 22:57:32 +00:00
"syn 1.0.109",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[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",
]
2023-03-25 15:25:51 +00:00
[[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",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "aho-corasick"
2023-05-08 02:46:25 +00:00
version = "1.0.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
2022-11-02 16:39:52 +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",
]
[[package]]
name = "async-compression"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
dependencies = [
"brotli",
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-01-19 22:54:15 +00:00
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2022-11-02 16:39:52 +00:00
[[package]]
name = "bit_field"
2023-03-25 15:25:51 +00:00
version = "0.10.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
2022-11-02 16:39:52 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "block-buffer"
2023-03-25 15:25:51 +00:00
version = "0.10.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-11-02 16:39:52 +00:00
dependencies = [
"generic-array",
]
[[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"
2023-03-25 15:25:51 +00:00
version = "2.3.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
2022-11-02 16:39:52 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
[[package]]
name = "bumpalo"
2023-05-15 03:12:58 +00:00
version = "3.12.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
2022-11-02 16:39:52 +00:00
[[package]]
name = "bytemuck"
2023-03-25 15:25:51 +00:00
version = "1.13.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
2022-11-02 16:39:52 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2023-03-25 15:25:51 +00:00
version = "1.4.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-11-02 16:39:52 +00:00
[[package]]
name = "bytestring"
2023-03-25 15:25:51 +00:00
version = "1.3.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytes",
]
[[package]]
name = "cc"
2023-03-25 15:25:51 +00:00
version = "1.0.79"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-11-02 16:39:52 +00:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2023-03-25 15:25:51 +00:00
version = "0.16.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2022-11-02 16:39:52 +00:00
dependencies = [
"percent-encoding",
"time",
"version_check",
]
[[package]]
name = "cpufeatures"
2023-05-08 02:46:25 +00:00
version = "0.2.7"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
2022-11-02 16:39:52 +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",
]
[[package]]
name = "crossbeam-channel"
2023-05-08 02:46:25 +00:00
version = "0.5.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2023-03-25 15:25:51 +00:00
version = "0.8.3"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-03-25 15:25:51 +00:00
version = "0.9.14"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2023-03-25 15:25:51 +00:00
version = "0.8.15"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "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",
2023-03-27 22:57:32 +00:00
"syn 1.0.109",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "digest"
2023-03-25 15:25:51 +00:00
version = "0.10.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-11-02 16:39:52 +00:00
dependencies = [
"block-buffer",
"crypto-common",
]
[[package]]
name = "either"
2023-03-25 15:25:51 +00:00
version = "1.8.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-11-02 16:39:52 +00:00
[[package]]
name = "encoding_rs"
2023-03-25 15:25:51 +00:00
version = "0.8.32"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "exr"
2023-03-25 15:25:51 +00:00
version = "1.6.3"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "bdd2162b720141a91a054640662d3edce3d50a944a50ffca5313cd951abb35b4"
2022-11-02 16:39:52 +00:00
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
2023-05-08 02:46:25 +00:00
"miniz_oxide 0.6.2",
2023-03-25 15:25:51 +00:00
"rayon-core",
2022-11-02 16:39:52 +00:00
"smallvec",
2023-03-25 15:25:51 +00:00
"zune-inflate",
2022-11-02 16:39:52 +00:00
]
2023-05-08 02:46:25 +00:00
[[package]]
name = "fdeflate"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
dependencies = [
"simd-adler32",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "flate2"
2023-05-08 02:46:25 +00:00
version = "1.0.26"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2022-11-02 16:39:52 +00:00
dependencies = [
"crc32fast",
2023-05-08 02:46:25 +00:00
"miniz_oxide 0.7.1",
2022-11-02 16:39:52 +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",
2023-05-08 02:46:25 +00:00
"spin 0.9.8",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-11-02 16:39:52 +00:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-11-02 16:39:52 +00:00
2023-01-19 22:54:15 +00:00
[[package]]
name = "futures-io"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2023-01-19 22:54:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2023-01-19 22:54:15 +00:00
[[package]]
name = "futures-macro"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2023-01-19 22:54:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2023-01-19 22:54:15 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-15 03:12:58 +00:00
"syn 2.0.16",
2023-01-19 22:54:15 +00:00
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "futures-sink"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-11-02 16:39:52 +00:00
[[package]]
name = "futures-task"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-11-02 16:39:52 +00:00
[[package]]
name = "futures-util"
2023-05-08 02:46:25 +00:00
version = "0.3.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-11-02 16:39:52 +00:00
dependencies = [
"futures-core",
2023-01-19 22:54:15 +00:00
"futures-io",
"futures-macro",
"futures-sink",
2022-11-02 16:39:52 +00:00
"futures-task",
2023-01-19 22:54:15 +00:00
"memchr",
2022-11-02 16:39:52 +00:00
"pin-project-lite",
"pin-utils",
2023-01-19 22:54:15 +00:00
"slab",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "generic-array"
2023-05-08 02:46:25 +00:00
version = "0.14.7"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2022-11-02 16:39:52 +00:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2023-05-08 02:46:25 +00:00
version = "0.2.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"js-sys",
"libc",
"wasi",
"wasm-bindgen",
]
[[package]]
name = "gif"
2023-03-25 02:48:24 +00:00
version = "0.12.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 02:48:24 +00:00
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
2022-11-02 16:39:52 +00:00
dependencies = [
"color_quant",
"weezl",
]
[[package]]
name = "h2"
2023-05-15 03:12:58 +00:00
version = "0.3.19"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "half"
2023-03-25 15:25:51 +00:00
version = "2.2.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
2022-11-02 16:39:52 +00:00
dependencies = [
"crunchy",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hermit-abi"
2023-03-25 15:25:51 +00:00
version = "0.2.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
]
[[package]]
name = "http"
2023-03-25 15:25:51 +00:00
version = "0.2.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "hyper"
2023-05-08 02:46:25 +00:00
version = "0.14.26"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
2023-03-25 15:25:51 +00:00
version = "0.23.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
2022-11-02 16:39:52 +00:00
dependencies = [
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "image"
2023-03-25 02:48:24 +00:00
version = "0.24.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 02:48:24 +00:00
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"exr",
"gif",
"jpeg-decoder",
"num-rational",
"num-traits",
"png",
2023-03-25 02:48:24 +00:00
"qoi",
2022-11-02 16:39:52 +00:00
"tiff",
]
[[package]]
name = "indexmap"
2023-03-25 15:25:51 +00:00
version = "1.9.3"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "ipnet"
2023-05-08 02:46:25 +00:00
version = "2.7.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2022-11-02 16:39:52 +00:00
[[package]]
name = "itoa"
2023-03-25 15:25:51 +00:00
version = "1.0.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-11-02 16:39:52 +00:00
[[package]]
name = "jobserver"
2023-03-25 15:25:51 +00:00
version = "0.1.26"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
]
[[package]]
name = "jpeg-decoder"
2022-11-11 20:42:44 +00:00
version = "0.3.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-11 20:42:44 +00:00
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
2022-11-02 16:39:52 +00:00
dependencies = [
"rayon",
]
[[package]]
name = "js-sys"
2023-05-15 03:12:58 +00:00
version = "0.3.62"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
2022-11-02 16:39:52 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
[[package]]
name = "libc"
2023-05-15 03:12:58 +00:00
version = "0.2.144"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2022-11-02 16:39:52 +00:00
[[package]]
name = "libwebp-sys"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439fd1885aa28937e7edcd68d2e793cb4a22f8733460d2519fbafd2b215672bf"
dependencies = [
"cc",
]
[[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"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "memoffset"
2023-03-25 15:25:51 +00:00
version = "0.8.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
2023-03-25 15:25:51 +00:00
version = "0.3.17"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-11-02 16:39:52 +00:00
[[package]]
name = "miniz_oxide"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [
"adler",
]
2023-05-08 02:46:25 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
"simd-adler32",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "mio"
2023-03-25 15:25:51 +00:00
version = "0.8.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
"log",
"wasi",
2023-04-25 19:56:27 +00:00
"windows-sys 0.45.0",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
[[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",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2023-03-25 15:25:51 +00:00
version = "1.15.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-11-02 16:39:52 +00:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
2023-03-25 15:25:51 +00:00
version = "1.17.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-11-02 16:39:52 +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-03-25 15:25:51 +00:00
version = "0.9.7"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-04-25 19:56:27 +00:00
"windows-sys 0.45.0",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "paste"
2023-03-25 15:25:51 +00:00
version = "1.0.12"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2022-11-02 16:39:52 +00:00
[[package]]
name = "percent-encoding"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "pin-project"
2023-05-15 03:12:58 +00:00
version = "1.1.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
2022-11-02 16:39:52 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-05-15 03:12:58 +00:00
version = "1.1.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-15 03:12:58 +00:00
"syn 2.0.16",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "piped-proxy"
version = "0.1.0"
dependencies = [
"actix-web",
"image",
2023-03-25 15:25:51 +00:00
"once_cell",
2022-11-02 16:39:52 +00:00
"qstring",
"regex",
"reqwest",
"tokio",
"webp",
]
2023-03-25 15:25:51 +00:00
[[package]]
name = "pkg-config"
2023-05-08 02:46:25 +00:00
version = "0.3.27"
2023-03-25 15:25:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-03-25 15:25:51 +00:00
2022-11-02 16:39:52 +00:00
[[package]]
name = "png"
2023-05-08 02:46:25 +00:00
version = "0.17.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa"
2022-11-02 16:39:52 +00:00
dependencies = [
"bitflags",
"crc32fast",
2023-05-08 02:46:25 +00:00
"fdeflate",
2022-11-02 16:39:52 +00:00
"flate2",
2023-05-08 02:46:25 +00:00
"miniz_oxide 0.7.1",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "ppv-lite86"
2023-03-25 15:25:51 +00:00
version = "0.2.17"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-11-02 16:39:52 +00:00
[[package]]
name = "proc-macro2"
2023-05-08 02:46:25 +00:00
version = "1.0.56"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
2022-11-02 16:39:52 +00:00
dependencies = [
"unicode-ident",
]
2023-03-25 02:48:24 +00:00
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
"bytemuck",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "qstring"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e"
dependencies = [
"percent-encoding",
]
[[package]]
name = "quote"
2023-05-15 03:12:58 +00:00
version = "1.0.27"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
]
[[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",
]
[[package]]
name = "rayon"
2023-03-25 15:25:51 +00:00
version = "1.7.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2022-11-02 16:39:52 +00:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-03-25 15:25:51 +00:00
version = "1.11.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2022-11-02 16:39:52 +00:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2023-04-21 12:53:52 +00:00
version = "1.8.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-21 12:53:52 +00:00
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
2022-11-02 16:39:52 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-04-21 12:53:52 +00:00
version = "0.7.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-21 12:53:52 +00:00
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
2022-11-02 16:39:52 +00:00
[[package]]
name = "reqwest"
2023-04-28 17:48:32 +00:00
version = "0.11.17"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-28 17:48:32 +00:00
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
2022-11-02 16:39:52 +00:00
dependencies = [
"async-compression",
2023-03-25 15:25:51 +00:00
"base64",
2022-11-02 16:39:52 +00:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
2023-01-19 22:54:15 +00:00
"wasm-streams",
2022-11-02 16:39:52 +00:00
"web-sys",
"webpki-roots",
"winreg",
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin 0.5.2",
"untrusted",
"web-sys",
"winapi",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "rustls"
2023-03-25 15:25:51 +00:00
version = "0.20.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-11-02 16:39:52 +00:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
2023-03-25 15:25:51 +00:00
version = "1.0.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2022-11-02 16:39:52 +00:00
dependencies = [
2023-03-25 15:25:51 +00:00
"base64",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "ryu"
2023-03-25 15:25:51 +00:00
version = "1.0.13"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2022-11-02 16:39:52 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "semver"
2023-03-25 15:25:51 +00:00
version = "1.0.17"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2022-11-02 16:39:52 +00:00
[[package]]
name = "serde"
2023-05-15 03:12:58 +00:00
version = "1.0.163"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2022-11-02 16:39:52 +00:00
[[package]]
name = "serde_json"
2023-05-08 02:46:25 +00:00
version = "1.0.96"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2022-11-02 16:39:52 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "signal-hook-registry"
2023-03-25 15:25:51 +00:00
version = "1.4.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
]
2023-03-25 15:25:51 +00:00
[[package]]
name = "simd-adler32"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f"
2022-11-02 16:39:52 +00:00
[[package]]
name = "slab"
2023-03-25 15:25:51 +00:00
version = "0.4.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "socket2"
2023-03-25 15:25:51 +00:00
version = "0.4.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
2023-05-08 02:46:25 +00:00
version = "0.9.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2022-11-02 16:39:52 +00:00
dependencies = [
"lock_api",
]
[[package]]
name = "syn"
2023-03-25 15:25:51 +00:00
version = "1.0.109"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-03-27 22:57:32 +00:00
[[package]]
name = "syn"
2023-05-15 03:12:58 +00:00
version = "2.0.16"
2023-03-27 22:57:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
2023-03-27 22:57:32 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "tiff"
2023-03-25 15:25:51 +00:00
version = "0.8.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471"
2022-11-02 16:39:52 +00:00
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
[[package]]
name = "time"
2023-05-08 02:46:25 +00:00
version = "0.3.21"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
2022-11-02 16:39:52 +00:00
dependencies = [
"itoa",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-05-08 02:46:25 +00:00
version = "0.1.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-11-02 16:39:52 +00:00
[[package]]
name = "time-macros"
2023-05-08 02:46:25 +00:00
version = "0.2.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2022-11-02 16:39:52 +00:00
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"
2023-03-25 15:25:51 +00:00
version = "0.1.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-11-02 16:39:52 +00:00
[[package]]
name = "tokio"
2023-05-10 12:14:40 +00:00
version = "1.28.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-10 12:14:40 +00:00
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
2023-04-25 19:56:27 +00:00
"windows-sys 0.48.0",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "tokio-macros"
2023-04-25 19:56:27 +00:00
version = "2.1.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 19:56:27 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-15 03:12:58 +00:00
"syn 2.0.16",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "tokio-rustls"
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls",
"tokio",
"webpki",
]
[[package]]
name = "tokio-util"
2023-05-08 02:46:25 +00:00
version = "0.7.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2022-11-02 16:39:52 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
"log",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-05-15 03:12:58 +00:00
version = "0.1.31"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2022-11-02 16:39:52 +00:00
dependencies = [
"once_cell",
]
[[package]]
name = "try-lock"
2023-03-25 15:25:51 +00:00
version = "0.2.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-11-02 16:39:52 +00:00
[[package]]
name = "typenum"
2023-03-25 15:25:51 +00:00
version = "1.16.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-11-02 16:39:52 +00:00
[[package]]
name = "unicode-bidi"
2023-03-25 15:25:51 +00:00
version = "0.3.13"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-11-02 16:39:52 +00:00
[[package]]
name = "unicode-ident"
2023-03-25 15:25:51 +00:00
version = "1.0.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-11-02 16:39:52 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-05-15 03:12:58 +00:00
version = "0.2.85"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-15 03:12:58 +00:00
version = "0.2.85"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
2022-11-02 16:39:52 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-05-15 03:12:58 +00:00
"syn 2.0.16",
2022-11-02 16:39:52 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-15 03:12:58 +00:00
version = "0.4.35"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-15 03:12:58 +00:00
version = "0.2.85"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
2022-11-02 16:39:52 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-15 03:12:58 +00:00
version = "0.2.85"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-15 03:12:58 +00:00
"syn 2.0.16",
2022-11-02 16:39:52 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-15 03:12:58 +00:00
version = "0.2.85"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
2022-11-02 16:39:52 +00:00
2023-01-19 22:54:15 +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",
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "web-sys"
2023-05-15 03:12:58 +00:00
version = "0.3.62"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-15 03:12:58 +00:00
checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
2022-11-02 16:39:52 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webp"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf022f821f166079a407d000ab57e84de020e66ffbbf4edde999bc7d6e371cae"
dependencies = [
"image",
"libwebp-sys",
]
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2023-03-25 15:25:51 +00:00
version = "0.22.6"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2022-11-02 16:39:52 +00:00
dependencies = [
"webpki",
]
[[package]]
name = "weezl"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-03-02 00:21:08 +00:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-25 19:56:27 +00:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
2023-03-02 00:21:08 +00:00
]
[[package]]
name = "windows-targets"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2023-03-02 00:21:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-03-02 00:21:08 +00:00
dependencies = [
2023-04-25 19:56:27 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2023-03-02 00:21:08 +00:00
]
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_i686_gnu"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_i686_msvc"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-11-02 16:39:52 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-25 15:25:51 +00:00
version = "0.42.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-11-02 16:39:52 +00:00
2023-04-25 19:56:27 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2022-11-02 16:39:52 +00:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[package]]
name = "zstd"
2023-03-25 15:25:51 +00:00
version = "0.12.3+zstd.1.5.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 15:25:51 +00:00
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
2022-11-02 16:39:52 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2023-05-08 02:46:25 +00:00
version = "6.0.5+zstd.1.5.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2023-05-08 02:46:25 +00:00
version = "2.0.8+zstd.1.5.5"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
2022-11-02 16:39:52 +00:00
dependencies = [
"cc",
"libc",
2023-03-25 15:25:51 +00:00
"pkg-config",
]
[[package]]
name = "zune-inflate"
2023-05-08 02:46:25 +00:00
version = "0.2.54"
2023-03-25 15:25:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-08 02:46:25 +00:00
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
2023-03-25 15:25:51 +00:00
dependencies = [
"simd-adler32",
2022-11-02 16:39:52 +00:00
]