Skip to content

build(deps): bump the rust-dependencies group across 1 directory with 22 updates#6381

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/quickwit/rust-dependencies-37bcedb65e
Open

build(deps): bump the rust-dependencies group across 1 directory with 22 updates#6381
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/quickwit/rust-dependencies-37bcedb65e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 5, 2026

Bumps the rust-dependencies group with 21 updates in the /quickwit directory:

Package From To
binggan 0.15.3 0.16.1
google-cloud-auth 0.17.2 1.9.0
google-cloud-gax 0.19.2 1.9.1
google-cloud-pubsub 0.30.0 0.33.2
lambda_runtime 0.13.0 1.1.3
lru 0.16.4 0.18.0
openssl-probe 0.1.6 0.2.1
reqwest-middleware 0.4.2 0.5.1
reqwest-retry 0.8.0 0.9.1
serde_qs 0.15.0 1.1.1
serde_with 3.18.0 3.19.0
tokio-metrics 0.4.9 0.5.0
toml 0.9.12+spec-1.1.0 1.1.2+spec-1.1.0
utoipa 4.2.3 5.4.0
vrl 0.31.0 0.32.0
aws-sdk-kinesis 1.103.0 1.104.0
aws-sdk-s3 1.129.0 1.131.0
aws-sdk-lambda 1.120.0 1.122.0
aws-sdk-sqs 1.97.0 1.98.0
azure_identity 0.21.0 0.35.0
opendal 0.55.0 0.56.0

Updates binggan from 0.15.3 to 0.16.1

Changelog

Sourced from binggan's changelog.

0.16.1 (2026-04-20)

Features

  • Added NUM_ITER_GROUP environment variable to override benchmark group iterations (it can also be set programmatically, defaults to 32)

0.16.0 (2026-04-12)

Features

  • Advanced filtering engine via tantivy-query-grammar
Extended basic substring filtering with a powerful querying engine using tantivy-query-grammar.

Supports logical operators: AND, OR, NOT (and their symbols like -).
Supports field-based targeting:

  • runner_name (alias: r)
  • group_name (alias: g)
  • bench_name (alias: b)

Enables granular selections, e.g., cargo bench -- "bench_name:my_bench AND group_name:my_group".
You can also use the BINGGAN_FILTER environment variable to apply a filter.
Keeps backward compatibility: basic strings fallback to substring matches on the full bench ID.

Commits

Updates google-cloud-auth from 0.17.2 to 1.9.0

Release notes

Sourced from google-cloud-auth's releases.

v1.0.0

First GA release

We are proud to announce the 1.0 release of the Google Cloud client libraries for Rust. This is the first GA version of the client libraries.

What's Included

  • Fully asynchronous clients for over 140 services, including Cloud Storage, Vertex AI, Secret Manager, and Key Management Service.
  • Fully asynchronous auth library, with support for application default credentials, service account credentials, user credentials, compute engine metadata service, and OIDC-based external credentials[^1].
  • Idiomatic abstractions for long-running operations and pagination APIs.
  • Automatic retries for requests that fail due to transient errors.
  • Automatic demarshalling of error details into idiomatic types.
  • Automatic resumes for uploads to and downloads from Cloud Storage.
  • Support for streaming uploads to Cloud Storage, with retries on errors.
  • Automatic checksumming of data uploaded to or downloaded from Cloud Storage.

What's changed

Compared to the previous release (v0.12.0) this release bumps the version numbers to 1.0.0 and updates README files.

Full Changelog: googleapis/google-cloud-rust@v0.12.0...v1.0.0

Footnotes

[^1]: Also known as workload identify federation or "bring your own id".

Commits

Updates google-cloud-gax from 0.19.2 to 1.9.1

Release notes

Sourced from google-cloud-gax's releases.

v1.0.0

First GA release

We are proud to announce the 1.0 release of the Google Cloud client libraries for Rust. This is the first GA version of the client libraries.

What's Included

  • Fully asynchronous clients for over 140 services, including Cloud Storage, Vertex AI, Secret Manager, and Key Management Service.
  • Fully asynchronous auth library, with support for application default credentials, service account credentials, user credentials, compute engine metadata service, and OIDC-based external credentials[^1].
  • Idiomatic abstractions for long-running operations and pagination APIs.
  • Automatic retries for requests that fail due to transient errors.
  • Automatic demarshalling of error details into idiomatic types.
  • Automatic resumes for uploads to and downloads from Cloud Storage.
  • Support for streaming uploads to Cloud Storage, with retries on errors.
  • Automatic checksumming of data uploaded to or downloaded from Cloud Storage.

What's changed

Compared to the previous release (v0.12.0) this release bumps the version numbers to 1.0.0 and updates README files.

Full Changelog: googleapis/google-cloud-rust@v0.12.0...v1.0.0

Footnotes

[^1]: Also known as workload identify federation or "bring your own id".

Commits

Updates google-cloud-pubsub from 0.30.0 to 0.33.2

Commits

Updates lambda_runtime from 0.13.0 to 1.1.3

Release notes

Sourced from lambda_runtime's releases.

v1.1.3

Other

  • remove non exhaustive from time structs (#1138)

v1.1.2

Fixed

  • fix handling of null groupConfiguration (#1130)

Other

v1.1.1

Thank you to all the contributors who helped make this release possible. We appreciate your time, effort, and passion for the Rust Lambda community. ❤️

Lambda Managed Instances

The runtime now supports Lambda Managed Instances via the concurrency-tokio feature flag (previously experimental-concurrency). Lambda Managed Instances allow multiple concurrent requests to be processed within a single execution environment. When AWS_LAMBDA_MAX_CONCURRENCY is set, the runtime spawns multiple independent long-poll workers to handle concurrent invocations. If the env var is unset or <= 1, it falls back to sequential behavior automatically. This lets you use the same handler for both classic Lambda and Lambda Managed Instances. (#1067)

[dependencies]
lambda_runtime = { version = "1.1", features = ["concurrency-tokio"] }
lambda_runtime::run_concurrent(service_fn(my_handler)).await?;

For a complete working example, see examples/basic-lambda-concurrent. For detailed guidance on building functions for multi-concurrency, including shared state patterns and database connection pools, see the Rust runtime for Lambda Managed Instances documentation.

We would like also to involve the community in a broader discussion about improving our approach on multiconcurrency. You can find the discussion in (#1120)

lambda_runtime - 1.1.1

Added

  • (lambda-managed-instances) log non-2xx Lambda Runtime API responses with status and body (#1109)
  • tenant ID propagation for multi-tenant Lambda use cases. The tenant_id is available in the context.tenant_id field (Option<String>) and is automatically extracted from the lambda-runtime-aws-tenant-id header when present (#1082)
  • Add builder pattern support for event response types (#1090)

Fixed

  • (test) fix test_concurrent_structured_logging_isolation (#1121)

Changed

  • MSRV updated from 1.82.0 to 1.84.0, enabled MSRV-aware resolver (#1078)

... (truncated)

Commits

Updates lru from 0.16.4 to 0.18.0

Changelog

Sourced from lru's changelog.

v0.18.0 - 2026-04-27

  • Fix unconstrained lifetime in get_or_insert_mut_ref.

v0.17.0 - 2026-04-14

  • Upgrade hashbrown to 0.17.0 and update MSRV to 1.85.0.
Commits
  • dac07e3 Merge pull request #234 from jeromefroe/jerome/prepare-0-18-0-release
  • 0335315 Prepare 0.18.0 release
  • e40bbdc Merge pull request #233 from paolobarbolini/get_or_insert_mut_ref-unconstrain...
  • a615a5b Fix unconstrained lifetime in LruCache::get_or_insert_mut_ref
  • 13321a9 Merge pull request #232 from jeromefroe/jerome/prepare-0-17-0-release
  • f7d0ece Prepare 0.17.0 release
  • 2d3d6d5 Merge pull request #231 from xtqqczze/deps/hashbrown
  • 346e2fe Bump hashbrown to 0.17.0
  • 1302b4e Update MSRV to 1.85.0
  • See full diff in compare view

Updates openssl-probe from 0.1.6 to 0.2.1

Release notes

Sourced from openssl-probe's releases.

0.2.1

  • Support for OpenHarmony.
  • Corrections to crate metadata.

What's Changed

0.2.0 is the first release after openssl-probe maintenance has been handed over to the rustls team. Thanks to @​alexcrichton for creating and maintaining it for the past 9 years. We're happy to address any feedback you have for this crate.

Breaking changes

  • ProbeResult::cert_dir is now a Vec<PathBuf> rather than an Option<PathBuf>, allowing the library to yield multiple suggestions for directories which may contain certificate files.
  • Rather than using a single list of locations for certificate files and certificate directories, openssl-probe now uses much shorter per-platform lists. This should make the API faster and make it less likely to accidentally pick up locations that are unidiomatic for the platform.
  • Removed deprecated API

What's Changed

Commits
  • 9181752 Prepare 0.2.1
  • 2a23322 docs: clarify lib description, update README
  • 5e18d53 feat: add openharmony platform preset certs folder
  • df769f4 Update repo URL in Cargo metadata
  • cc52ac7 ci: check cargo-deny (and fix up SPDX metadata)
  • 4cfa095 ci: check semver compatibility
  • 04e7058 ci: check clippy
  • fbce324 ci: check code formatting
  • 11fba1b ci: setup duplicate workflow cancellation
  • a44b6f1 ci: restrict workflow permissions
  • Additional commits viewable in compare view

Updates reqwest-middleware from 0.4.2 to 0.5.1

Release notes

Sourced from reqwest-middleware's releases.

reqwest-middleware-v0.5.1

Other

  • Set changelog version for last release (#268)

reqwest-middleware-v0.5.0

Added

  • Deprecated fetch_mode_no_cors as it's been deprecated in reqwest.
Commits

Updates reqwest-retry from 0.8.0 to 0.9.1

Release notes

Sourced from reqwest-retry's releases.

reqwest-retry-v0.9.1

Fixed

  • (reqwest-retry) drop instant by upgrading wasmtimer (#254)

Other

  • Set changelog version for last release (#268)

reqwest-retry-v0.9.0

Breaking Changes

  • Updated retry-policies (re-exported as reqwest_retry::policies) to 0.5.

Changed

  • Updated thiserror to 2.0
Commits

Updates serde_qs from 0.15.0 to 1.1.1

Release notes

Sourced from serde_qs's releases.

v1.1.1

Other

  • Cargo feature / dependency cleanup (#165)

v1.1.0

Added

  • add DuplicateKeyBehavior config option (#162)

v1.0.0

Other

  • fix typos and improve clarity in documentation comments (#157)

v1.0.0-rc.5

Other

  • fix typos and improve clarity in documentation comments (#157)

v1.0.0-rc.4

Other

  • Bump warp (#156)
  • Update deserialization logic + add principles. (#147)
  • Bump MSRV + add profiling examples (#154)

v1.0.0-rc.3

Other

  • Error when hitting serialization max depth (#144)
  • Deserialize empty value as bool=true (#142)

v1.0.0-rc.2

Other

  • Cleanup of web utils remove redundant OptionalQsQuery (since Option<T> now works) and add QsForm (#140)
  • More tests / minor change to field encoding (#139)

v1.0.0-rc.1

Other

  • Fix maps with integer keys. (#138)
  • Support explicit serialization formatting for arrays. (#137)
  • v1 changelog (and more tests) (#135)

v1.0.0-rc.0

Release candidate for stable v1 release

... (truncated)

Changelog

Sourced from serde_qs's changelog.

1.1.1 - 2026-04-05

Other

  • Cargo feature / dependency cleanup (#165)

1.1.0 - 2026-03-21

Added

  • add DuplicateKeyBehavior config option (#162)

1.0.0 - 2026-01-09

Other

  • fix typos and improve clarity in documentation comments (#157)

1.0.0-rc.4 - 2025-12-14

Other

  • Bump warp (#156)
  • Update deserialization logic + add principles. (#147)
  • Bump MSRV + add profiling examples (#154)

1.0.0-rc.3 - 2025-05-27

Other

  • Error when hitting serialization max depth (#144)
  • Deserialize empty value as bool=true (#142)

1.0.0-rc.2 - 2025-05-27

Other

  • Cleanup of web utils remove redundant OptionalQsQuery (since Option<T> now works) and add QsForm (#140)
  • More tests / minor change to field encoding (#139)

1.0.0-rc.1 - 2025-05-26

Other

  • Fix maps with integer keys. (#138)
  • Support explicit serialization formatting for arrays. (#137)
  • v1 changelog (and more tests) (#135)

1.0.0-rc.0 - 2025-05-26

... (truncated)

Commits

Updates serde_with from 3.18.0 to 3.19.0

Release notes

Sourced from serde_with's releases.

serde_with v3.19.0

Added

  • Add support for hashbrown v0.17 (#940)

    This extends the existing support for hashbrown to the newly released version.

Commits
  • b4cbda0 Bump version to 3.19.0. (#942)
  • 727de67 Bump version to 3.19.0.
  • 2d4f83d Add support for hashbrown 0.17.0 (#941)
  • 79262f4 Add support for hashbrown 0.17.0
  • 6e286a3 Bump the github-actions group with 2 updates (#937)
  • 1bdf8a2 Bump the github-actions group with 2 updates
  • 1e9f316 Bump rust-lang/crates-io-auth-action from 1.0.3 to 1.0.4 in the github-action...
  • f7aaca9 Bump rust-lang/crates-io-auth-action in the github-actions group
  • 652dc89 Autofix GitHub Actions issue found by zizmor (#934)
  • d884e01 Update pre-commit configuration (#933)
  • Additional commits viewable in compare view

Updates tokio-metrics from 0.4.9 to 0.5.0

Release notes

Sourced from tokio-metrics's releases.

v0.5.0

Breaking Changes

  • RuntimeMetrics::poll_time_histogram is now a PollTimeHistogram instead of Vec<u64>. Each bucket carries its duration range alongside the count. (#121)

Added

  • Add metrique-integration feature to use RuntimeMetrics as a metrique unit of work (#121)

Other

  • Fix doctests failing after Tokio v1.51 (#122)
Changelog

Sourced from tokio-metrics's changelog.

0.5.0 - 2026-04-09

Breaking Changes

  • RuntimeMetrics::poll_time_histogram is now a PollTimeHistogram instead of Vec<u64>. Each bucket carries its duration range alongside the count. (#121)

Added

  • Add metrique-integration feature to use RuntimeMetrics as a metrique unit of work (#121)

Other

  • Fix doctests failing after Tokio v1.51 (#122)
Commits

Updates toml from 0.9.12+spec-1.1.0 to 1.1.2+spec-1.1.0

Commits

Updates utoipa from 4.2.3 to 5.4.0

Release notes

Sourced from utoipa's releases.

utoipa-5.4.0

What's New 💎 🆕 🎉

Full change log

utoipa-gen-5.4.0

What's New 💎 🆕 🎉

Full change log

utoipa-5.3.1

What's New 💎 🆕 🎉

Full change log

utoipa-gen-5.3.1

What's New 💎 🆕 🎉

Full change log

utoipa-5.3.0

What's New 💎 🆕 🎉

Thanks to the remarkable community members of their hard work and hours spend on changes to the utoipa. This release would not have been possible without you 🎉

... (truncated)

Changelog

Sourced from utoipa's changelog.

Changelog - utoipa-rapidoc

6.0.0 - Thu 16 2025

Changed

5.0.1 - Jan 6 2025

Changed

5.0.0 - Oct 14 2024

Added

Fixed

Changed

4.0.0 - May 5 2024

Added

  • Add default-features = false to the optional axum dependency to avoid pulling in tokio in non-tokio environments (juhaku/utoipa#874)

Fixed

... (truncated)

Commits

Updates vrl from 0.31.0 to 0.32.0

Changelog

Sourced from vrl's changelog.

[0.32.0 (2026-04-16)]

New Features

  • Added a new encode_csv function that encodes an array of values into a CSV-formatted string. This is the inverse of the existing parse_csv function and supports an optional single-byte delimiter (defaults to ,).

    authors: armleth (vectordotdev/vrl#1649)

  • Added to_entries and from_entries with jq-compatible behavior: to_entries supports both objects and arrays, and from_entries accepts key/Key/name/Name and value/Value aliases.

    authors: close2code-palm (vectordotdev/vrl#1653)

Enhancements

  • Added except parameter to flatten function to exclude specific keys from being flattened.

    authors: benjamin-awd (vectordotdev/vrl#1682)

Fixes

  • Fixed a bug where the REPL input validator was executing programs instead of only compiling them, causing functions with side effects (e.g. http_request) to run twice per submission.

    authors: prontidis (vectordotdev/vrl#1701)

Commits
  • dae313b chore(releasing): Prepare 0.32.0 release (#1740)
  • 1357941 chore(deps): bump the patches group across 1 directory with 43 updates (#1739)
  • bc37594 Ignore rand unsoundness advisory RUSTSEC-2026-0097 in deny.toml (#1738)
  • a1ac716 chore(deps): bump rustls-webpki from 0.103.10 to 0.103.12 (#1737)
  • b060b3c chore(deps): bump rand from 0.10.0 to 0.10.1 (#1736)
  • 6905c0a chore(deps): bump getrandom from 0.2.16 to 0.2.17 (#1723)
  • df03367 chore(dev): add generate-fixtures feature (#1711)
  • 8352d3a chore(deps): Upgrade rand from 0.8 to 0.9.3 (#1734)
  • cc05c72 feat(stdlib): jq entries commands (#1653)
  • 8d0aaf9 chore(ci): bump actions/github-script from 7.1.0 to 8.0.0 (#1730)
  • Additional commits viewable in compare view

Updates aws-sdk-kinesis from 1.103.0 to 1.104.0

Commits

Updates aws-sdk-s3 from 1.129.0 to 1.131.0

Commits

Updates aws-sdk-lambda from 1.120.0 to 1.122.0

Commits

Updates aws-sdk-sqs from 1.97.0 to 1.98.0

Commits

Updates aws-types from 1.3.14 to 1.3.15

Commits

Updates azure_identity from 0.21.0 to 0.35.0

Release notes

Sourced from azure_identity's releases.

azure_identity@0.35.0

0.35.0 (Unreleased)

Features Added

Breaking Changes

Bugs Fixed

Other Changes

  • Updated dependencies.

azure_identity@0.34.0

0.34.0 (2026-04-08)

Other Changes

  • Upgraded dependencies

azure_identity@0.33.0

0.33.0 (2026-03-09)

Breaking Changes

  • Support for wasm32-unknown-unknown has been removed (#3377)
  • ClientCertificateCredential::new() now takes SecretBytes instead of Secret for the certificate parameter. Pass the raw PKCS12 bytes wrapped in SecretBytes instead of a base64-encoded string wrapped in Secret.

azure_identity@0.32.0

0.32.0 (2026-02-11)

Breaking Changes

  • Changed our minimum supported Rust version (MSRV) from 1.85 to 1.88.

Bugs Fixed

  • Removed redundant content and extraneous JSON from Azure[Developer]CliCredential error messages

azure_identity@0.31.0

0.31.0 (2026-01-21)

Breaking Changes

  • Removed unused additionally_allowed_tenants and disable_instance_discovery options for AzureCliCredential and ClientAssertionCredential.
  • Changed the type of the certificate parameter of ClientCertificateCredential::new() from impl Into<Secret> to Secret.

azure_identity@0.30.0

0.30.0 (2025-11-11)

... (truncated)

Commits
  • 10e9b3b Prepare other crates for release (#4255)
  • c451539 Make key_Version optional for encrypt, sign, wrapKey (#4249)
  • 628dd0b Sync eng/common directory with azure-sdk-tools for PR 15253 (#4251)
  • cc39343 Prepare azure_core@0.35.0 release (#4248)
  • e626d79 don't start the cosmos emulator on Linux builds (#4205)
  • e2f4210 [Storage] Fix partitioned download deadlock, prepare for azure_storage_blob...
  • 9820d6f fix: unblock agentic triage MCP servers blocked by policy (#4243)
  • edebba5 Sync eng/common directory with azure-sdk-tools for PR 15244 (#4245)
  • a922d7a Update rand@0.8.5 -> 0.8.6 (#4221)
  • b9041b0 Sync eng/common directory with azure-sdk-tools for PR 15192 (#4216)
  • Additional commits viewable in

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 5, 2026
… 22 updates

Bumps the rust-dependencies group with 21 updates in the /quickwit directory:

| Package | From | To |
| --- | --- | --- |
| [binggan](https://github.com/pseitz/binggan) | `0.15.3` | `0.16.1` |
| [google-cloud-auth](https://github.com/googleapis/google-cloud-rust) | `0.17.2` | `1.9.0` |
| [google-cloud-gax](https://github.com/googleapis/google-cloud-rust) | `0.19.2` | `1.9.1` |
| [google-cloud-pubsub](https://github.com/googleapis/google-cloud-rust) | `0.30.0` | `0.33.2` |
| [lambda_runtime](https://github.com/aws/aws-lambda-rust-runtime) | `0.13.0` | `1.1.3` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.16.4` | `0.18.0` |
| [openssl-probe](https://github.com/rustls/openssl-probe) | `0.1.6` | `0.2.1` |
| [reqwest-middleware](https://github.com/TrueLayer/reqwest-middleware) | `0.4.2` | `0.5.1` |
| [reqwest-retry](https://github.com/TrueLayer/reqwest-middleware) | `0.8.0` | `0.9.1` |
| [serde_qs](https://github.com/samscott89/serde_qs) | `0.15.0` | `1.1.1` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.18.0` | `3.19.0` |
| [tokio-metrics](https://github.com/tokio-rs/tokio-metrics) | `0.4.9` | `0.5.0` |
| [toml](https://github.com/toml-rs/toml) | `0.9.12+spec-1.1.0` | `1.1.2+spec-1.1.0` |
| [utoipa](https://github.com/juhaku/utoipa) | `4.2.3` | `5.4.0` |
| [vrl](https://github.com/vectordotdev/vrl) | `0.31.0` | `0.32.0` |
| [aws-sdk-kinesis](https://github.com/awslabs/aws-sdk-rust) | `1.103.0` | `1.104.0` |
| [aws-sdk-s3](https://github.com/awslabs/aws-sdk-rust) | `1.129.0` | `1.131.0` |
| [aws-sdk-lambda](https://github.com/awslabs/aws-sdk-rust) | `1.120.0` | `1.122.0` |
| [aws-sdk-sqs](https://github.com/awslabs/aws-sdk-rust) | `1.97.0` | `1.98.0` |
| [azure_identity](https://github.com/azure/azure-sdk-for-rust) | `0.21.0` | `0.35.0` |
| [opendal](https://github.com/apache/opendal) | `0.55.0` | `0.56.0` |



Updates `binggan` from 0.15.3 to 0.16.1
- [Changelog](https://github.com/PSeitz/binggan/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pseitz/binggan/commits)

Updates `google-cloud-auth` from 0.17.2 to 1.9.0
- [Release notes](https://github.com/googleapis/google-cloud-rust/releases)
- [Commits](https://github.com/googleapis/google-cloud-rust/commits)

Updates `google-cloud-gax` from 0.19.2 to 1.9.1
- [Release notes](https://github.com/googleapis/google-cloud-rust/releases)
- [Commits](https://github.com/googleapis/google-cloud-rust/commits)

Updates `google-cloud-pubsub` from 0.30.0 to 0.33.2
- [Release notes](https://github.com/googleapis/google-cloud-rust/releases)
- [Commits](https://github.com/googleapis/google-cloud-rust/commits)

Updates `lambda_runtime` from 0.13.0 to 1.1.3
- [Release notes](https://github.com/aws/aws-lambda-rust-runtime/releases)
- [Changelog](https://github.com/aws/aws-lambda-rust-runtime/blob/main/release-plz.toml)
- [Commits](aws/aws-lambda-rust-runtime@lambda-http-0.13.0...lambda_runtime-v1.1.3)

Updates `lru` from 0.16.4 to 0.18.0
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.16.4...0.18.0)

Updates `openssl-probe` from 0.1.6 to 0.2.1
- [Release notes](https://github.com/rustls/openssl-probe/releases)
- [Commits](rustls/openssl-probe@0.1.6...0.2.1)

Updates `reqwest-middleware` from 0.4.2 to 0.5.1
- [Release notes](https://github.com/TrueLayer/reqwest-middleware/releases)
- [Commits](TrueLayer/reqwest-middleware@reqwest-middleware-v0.4.2...reqwest-middleware-v0.5.1)

Updates `reqwest-retry` from 0.8.0 to 0.9.1
- [Release notes](https://github.com/TrueLayer/reqwest-middleware/releases)
- [Commits](https://github.com/TrueLayer/reqwest-middleware/commits/reqwest-retry-v0.9.1)

Updates `serde_qs` from 0.15.0 to 1.1.1
- [Release notes](https://github.com/samscott89/serde_qs/releases)
- [Changelog](https://github.com/samscott89/serde_qs/blob/main/CHANGELOG.md)
- [Commits](samscott89/serde_qs@v0.15.0...v1.1.1)

Updates `serde_with` from 3.18.0 to 3.19.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.18.0...v3.19.0)

Updates `tokio-metrics` from 0.4.9 to 0.5.0
- [Release notes](https://github.com/tokio-rs/tokio-metrics/releases)
- [Changelog](https://github.com/tokio-rs/tokio-metrics/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/tokio-metrics@v0.4.9...v0.5.0)

Updates `toml` from 0.9.12+spec-1.1.0 to 1.1.2+spec-1.1.0
- [Commits](toml-rs/toml@toml-v0.9.12...toml-v1.1.2)

Updates `utoipa` from 4.2.3 to 5.4.0
- [Release notes](https://github.com/juhaku/utoipa/releases)
- [Changelog](https://github.com/juhaku/utoipa/blob/master/utoipa-rapidoc/CHANGELOG.md)
- [Commits](juhaku/utoipa@utoipa-4.2.3...utoipa-5.4.0)

Updates `vrl` from 0.31.0 to 0.32.0
- [Changelog](https://github.com/vectordotdev/vrl/blob/main/CHANGELOG.md)
- [Commits](vectordotdev/vrl@v0.31.0...v0.32.0)

Updates `aws-sdk-kinesis` from 1.103.0 to 1.104.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sdk-s3` from 1.129.0 to 1.131.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sdk-lambda` from 1.120.0 to 1.122.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sdk-sqs` from 1.97.0 to 1.98.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-types` from 1.3.14 to 1.3.15
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `azure_identity` from 0.21.0 to 0.35.0
- [Release notes](https://github.com/azure/azure-sdk-for-rust/releases)
- [Commits](https://github.com/azure/azure-sdk-for-rust/compare/azure_identity-0.21.0...azure_identity@0.35.0)

Updates `opendal` from 0.55.0 to 0.56.0
- [Release notes](https://github.com/apache/opendal/releases)
- [Changelog](https://github.com/apache/opendal/blob/main/CHANGELOG.md)
- [Commits](apache/opendal@v0.55.0...v0.56.0)

---
updated-dependencies:
- dependency-name: aws-sdk-kinesis
  dependency-version: 1.104.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aws-sdk-lambda
  dependency-version: 1.122.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aws-sdk-s3
  dependency-version: 1.131.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aws-sdk-sqs
  dependency-version: 1.98.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aws-types
  dependency-version: 1.3.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: azure_identity
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: binggan
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: google-cloud-auth
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: google-cloud-gax
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: google-cloud-pubsub
  dependency-version: 0.33.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: lambda_runtime
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: lru
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: opendal
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: openssl-probe
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: reqwest-middleware
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: reqwest-retry
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: serde_qs
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: serde_with
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tokio-metrics
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: toml
  dependency-version: 1.1.2+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: utoipa
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: vrl
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/quickwit/rust-dependencies-37bcedb65e branch from 2458ec2 to 33aed6c Compare May 6, 2026 02:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants