From 5b1219f17cb87c6e454f78011b666447d26e2cfd Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 10 Jul 2023 19:55:33 +0000
Subject: [PATCH] chore(deps): Bump async-compression from 0.4.0 to 0.4.1
(#17932)
Bumps
[async-compression](https://github.com/Nullus157/async-compression) from
0.4.0 to 0.4.1.
Release notes
Sourced from async-compression's
releases.
async-compression: v0.4.1
- Add
Zstd{Encoder,Decoder}::with_dict()
constructors.
- Add
zstdmt
crate feature that enables
zstd-safe/zstdmt
, allowing multi-threaded functionality to
work as expected.
Changelog
Sourced from async-compression's
changelog.
0.4.1 - 2023-07-10
- Add
Zstd{Encoder,Decoder}::with_dict()
constructors.
- Add
zstdmt
crate feature that enables
zstd-safe/zstdmt
, allowing multi-threaded functionality to
work as expected.
Commits
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-compression&package-manager=cargo&previous-version=0.4.0&new-version=0.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 6 +++---
Cargo.toml | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index ad79c8ea5d449..0c53394ef4a88 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -357,9 +357,9 @@ dependencies = [
[[package]]
name = "async-compression"
-version = "0.4.0"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11"
+checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6"
dependencies = [
"flate2",
"futures-core",
@@ -9184,7 +9184,7 @@ dependencies = [
"arc-swap",
"arr_macro",
"assert_cmd",
- "async-compression 0.4.0",
+ "async-compression 0.4.1",
"async-graphql",
"async-graphql-warp",
"async-stream",
diff --git a/Cargo.toml b/Cargo.toml
index 9afd8f72af831..0aeeac8775947 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -235,7 +235,7 @@ sha2 = { version = "0.10.7", default-features = false, optional = true }
# External libs
arc-swap = { version = "1.6", default-features = false, optional = true }
-async-compression = { version = "0.4.0", default-features = false, features = ["tokio", "gzip", "zstd"], optional = true }
+async-compression = { version = "0.4.1", default-features = false, features = ["tokio", "gzip", "zstd"], optional = true }
apache-avro = { version = "0.14.0", default-features = false, optional = true }
axum = { version = "0.6.18", default-features = false }
base64 = { version = "0.21.2", default-features = false, optional = true }