piped-proxy/Cargo.lock

1948 lines
47 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-06-05 02:27:20 +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-06-05 02:27:20 +00:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
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"
2023-05-16 23:06:41 +00:00
version = "0.4.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 23:06:41 +00:00
checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11"
2022-11-02 16:39:52 +00:00
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"
2023-05-29 01:06:03 +00:00
version = "0.21.2"
2023-01-19 22:54:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 01:06:03 +00:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2023-01-19 22:54:15 +00:00
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-29 01:06:03 +00:00
version = "3.13.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 01:06:03 +00:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
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-05-22 03:29:23 +00:00
version = "0.10.7"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
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-06-05 02:27:20 +00:00
version = "1.6.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-05 02:27:20 +00:00
checksum = "279d3efcc55e19917fff7ab3ddd6c14afb6a90881a0078465196fe2f99d08c56"
2022-11-02 16:39:52 +00:00
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
2023-06-05 02:27:20 +00:00
"miniz_oxide",
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-06-05 02:27:20 +00:00
"miniz_oxide",
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"
2023-06-12 01:49:30 +00:00
version = "1.2.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2022-11-02 16:39:52 +00:00
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-29 01:06:03 +00:00
"syn 2.0.18",
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-06-12 01:49:30 +00:00
version = "0.2.10"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
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-05-16 23:06:41 +00:00
version = "0.24.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 23:06:41 +00:00
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
2022-11-02 16:39:52 +00:00
dependencies = [
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
[[package]]
name = "idna"
2023-06-12 01:49:30 +00:00
version = "0.4.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2022-11-02 16:39:52 +00:00
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-22 03:29:23 +00:00
version = "0.3.63"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
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-06-12 01:49:30 +00:00
version = "0.2.146"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
2022-11-02 16:39:52 +00:00
2023-05-23 03:03:52 +00:00
[[package]]
name = "libmimalloc-sys"
version = "0.1.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e"
dependencies = [
"cc",
"libc",
]
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"
2023-06-12 01:49:30 +00:00
version = "0.4.10"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2022-11-02 16:39:52 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-06-12 01:49:30 +00:00
version = "0.4.19"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2022-11-02 16:39:52 +00:00
[[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",
]
2023-05-23 03:03:52 +00:00
[[package]]
name = "mimalloc"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98"
dependencies = [
"libmimalloc-sys",
]
2022-11-02 16:39:52 +00:00
[[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
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-06-05 02:27:20 +00:00
version = "0.8.8"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-05 02:27:20 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2022-11-02 16:39:52 +00:00
dependencies = [
"libc",
"log",
"wasi",
2023-06-12 01:49:30 +00:00
"windows-sys",
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-06-04 14:04:18 +00:00
version = "1.18.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-04 14:04:18 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
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-06-12 01:49:30 +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-06-12 01:49:30 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-06-12 01:49:30 +00:00
"windows-targets",
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"
2023-06-12 01:49:30 +00:00
version = "2.3.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2022-11-02 16:39:52 +00:00
[[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-29 01:06:03 +00:00
"syn 2.0.18",
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-05-23 03:03:52 +00:00
"mimalloc",
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-06-12 01:49:30 +00:00
version = "0.17.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
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-06-05 02:27:20 +00:00
"miniz_oxide",
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-06-12 01:49:30 +00:00
version = "1.0.60"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406"
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-29 01:06:03 +00:00
version = "1.0.28"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 01:06:03 +00:00
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
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"
2023-06-12 01:49:30 +00:00
version = "0.3.5"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
2022-11-02 16:39:52 +00:00
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2023-06-05 14:49:32 +00:00
version = "1.8.4"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-05 14:49:32 +00:00
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
2022-11-02 16:39:52 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-05-22 22:37:31 +00:00
version = "0.7.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 22:37:31 +00:00
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2022-11-02 16:39:52 +00:00
[[package]]
name = "reqwest"
2023-05-16 23:06:41 +00:00
version = "0.11.18"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 23:06:41 +00:00
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
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-05-16 23:06:41 +00:00
version = "0.21.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 23:06:41 +00:00
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
2022-11-02 16:39:52 +00:00
dependencies = [
"log",
"ring",
2023-05-16 23:06:41 +00:00
"rustls-webpki",
2022-11-02 16:39:52 +00:00
"sct",
]
[[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
]
2023-05-16 23:06:41 +00:00
[[package]]
name = "rustls-webpki"
version = "0.100.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
dependencies = [
"ring",
"untrusted",
]
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-06-12 01:49:30 +00:00
version = "1.0.164"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
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-29 01:06:03 +00:00
version = "2.0.18"
2023-03-27 22:57:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 01:06:03 +00:00
checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
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-06-12 01:49:30 +00:00
version = "0.3.22"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
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-28 00:28:24 +00:00
version = "1.28.2"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-28 00:28:24 +00:00
checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
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-06-12 01:49:30 +00:00
"windows-sys",
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-29 01:06:03 +00:00
"syn 2.0.18",
2022-11-02 16:39:52 +00:00
]
[[package]]
name = "tokio-rustls"
2023-06-12 01:49:30 +00:00
version = "0.24.1"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2022-11-02 16:39:52 +00:00
dependencies = [
"rustls",
"tokio",
]
[[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-05-29 01:06:03 +00:00
version = "1.0.9"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-29 01:06:03 +00:00
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
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"
2023-06-12 01:49:30 +00:00
version = "2.4.0"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-12 01:49:30 +00:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
2022-11-02 16:39:52 +00:00
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-22 03:29:23 +00:00
version = "0.2.86"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-22 03:29:23 +00:00
version = "0.2.86"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
2022-11-02 16:39:52 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-05-29 01:06:03 +00:00
"syn 2.0.18",
2022-11-02 16:39:52 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-22 03:29:23 +00:00
version = "0.4.36"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
2022-11-02 16:39:52 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-22 03:29:23 +00:00
version = "0.2.86"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
2022-11-02 16:39:52 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-22 03:29:23 +00:00
version = "0.2.86"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
2022-11-02 16:39:52 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-05-29 01:06:03 +00:00
"syn 2.0.18",
2022-11-02 16:39:52 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-22 03:29:23 +00:00
version = "0.2.86"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
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-22 03:29:23 +00:00
version = "0.3.63"
2022-11-02 16:39:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 03:29:23 +00:00
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
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-04-25 19:56:27 +00:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-06-12 01:49:30 +00:00
"windows-targets",
2023-04-25 19:56:27 +00:00
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
2023-06-12 01:49:30 +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-03-02 00:21:08 +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"
[[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"
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
]