0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-17 22:22:51 -04:00

build(deps): bump async-compression from 0.4.6 to 0.4.11 (#579)

This commit is contained in:
dependabot[bot] 2024-06-08 18:28:42 +00:00 committed by GitHub
parent 8225d34a9c
commit 3c2533f69a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 6 deletions

31
Cargo.lock generated
View File

@ -82,7 +82,7 @@ dependencies = [
"ahash",
"base64 0.21.7",
"bitflags 2.4.2",
"brotli",
"brotli 3.4.0",
"bytes 1.5.0",
"bytestring",
"derive_more",
@ -345,11 +345,11 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
name = "async-compression"
version = "0.4.6"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c"
checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5"
dependencies = [
"brotli",
"brotli 6.0.0",
"flate2",
"futures-core",
"memchr",
@ -476,7 +476,18 @@ checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
"brotli-decompressor 2.5.1",
]
[[package]]
name = "brotli"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor 4.0.1",
]
[[package]]
@ -489,6 +500,16 @@ dependencies = [
"alloc-stdlib",
]
[[package]]
name = "brotli-decompressor"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
[[package]]
name = "bstr"
version = "1.9.1"

View File

@ -66,7 +66,7 @@ actix-governor = { version = "0.5.0", default-features = false }
mini-moka = { version = "0.10", optional = true, default-features = false, features = [
"sync",
] }
async-compression = { version = "0.4.6", default-features = false, features = [
async-compression = { version = "0.4.11", default-features = false, features = [
"brotli",
"tokio",
], optional = true }