Skip to content

chore(deps): bump the rust-all group across 1 directory with 6 updates#62

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/main/rust-all-1512028570
Open

chore(deps): bump the rust-all group across 1 directory with 6 updates#62
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/main/rust-all-1512028570

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the rust-all group with 6 updates in the / directory:

Package From To
toml 1.0.6+spec-1.1.0 1.0.7+spec-1.1.0
zip 8.2.0 8.4.0
uuid 1.22.0 1.23.0
postgres 0.19.12 0.19.13
lettre 0.11.19 0.11.20
opentelemetry-otlp 0.31.0 0.31.1

Updates toml from 1.0.6+spec-1.1.0 to 1.0.7+spec-1.1.0

Commits

Updates zip from 8.2.0 to 8.4.0

Release notes

Sourced from zip's releases.

v8.4.0

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

  • skip BufReader for Stored files in make_reader (#739)

⚙️ Miscellaneous Tasks

  • move pull request template to correct folder (#749)

v8.3.1

🚜 Refactor

  • use AexEncryption::new (#736)
  • update tests to add big endian miri check (#735)

⚙️ Miscellaneous Tasks

  • cleanup repository files (#743)

v8.3.0

🚀 Features

  • add must_use (#727)
  • improve and fix extended timestamp extra field parsing (#713)
  • add crc32 ignore option (#710)
  • path related code in single file (#712)

🐛 Bug Fixes

  • Malformed ZIP64 file output (#715) (#717)

🚜 Refactor

  • refactor some imports (#734)
  • move code to distinct file (datetime, FixedSizeBlock) (#733)
  • move stream code to src/read/stream.rs (#731)
  • remove zip64 extra field update (#732)
  • improve part of the code with clippy help (#725)
  • simplify code for unicode extra field and improve error message (#724)
  • reorganize code (#714)

... (truncated)

Changelog

Sourced from zip's changelog.

8.4.0 - 2026-03-23

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

  • skip BufReader for Stored files in make_reader (#739)

⚙️ Miscellaneous Tasks

  • move pull request template to correct folder (#749)

8.3.1 - 2026-03-21

🚜 Refactor

  • use AexEncryption::new (#736)
  • update tests to add big endian miri check (#735)

⚙️ Miscellaneous Tasks

  • cleanup repository files (#743)

8.3.0 - 2026-03-19

🚀 Features

  • add must_use (#727)
  • improve and fix extended timestamp extra field parsing (#713)
  • add crc32 ignore option (#710)
  • path related code in single file (#712)

🐛 Bug Fixes

  • Malformed ZIP64 file output (#715) (#717)

🚜 Refactor

  • refactor some imports (#734)
  • move code to distinct file (datetime, FixedSizeBlock) (#733)
  • move stream code to src/read/stream.rs (#731)
  • remove zip64 extra field update (#732)
  • improve part of the code with clippy help (#725)

... (truncated)

Commits

Updates uuid from 1.22.0 to 1.23.0

Release notes

Sourced from uuid's releases.

v1.23.0

What's Changed

New Contributors

Special thanks

@​meng-xu-cs raised a series of bugs against the timestamp logic in uuid using automated tooling. The issues themselves were reasonably and responsibly presented and the end result is a better uuid library for everyone. Thanks!

Deprecations

This release includes the following deprecations:

  • Context: Renamed to ContextV1
  • Timestamp::from_gregorian: Renamed to Timestamp::from_gregorian_time

Change to Version::Max

Version::Max's u8 representation has changed from 0xff to 0x0f to match the value returned by Uuid::get_version_num.

Change to Uuid::get_version for the max UUID

Uuid::get_version will only return Some(Version::Max) if the UUID is actually the max UUID (all bytes are 0xff). Previously it would return Some if only the version field was 0x0f. This change matches the behaviour of the nil UUID, which only returns Some(Version::Nil) if the UUID is the nil UUID (all bytes are 0x00).

Full Changelog: uuid-rs/uuid@v1.22.0...v1.23.0

Commits
  • 00ab922 Merge pull request #876 from uuid-rs/cargo/v1.23.0
  • 726ba45 prepare for 1.23.0 release
  • 996dade Merge pull request #875 from uuid-rs/fix/context-ordering
  • e140479 simplify a use stmt
  • 8ed9142 reorganize and document more v7 context internals
  • e09a322 use LazyLock to synchronize v1/v6 context initialization
  • 0f260cc Merge pull request #874 from uuid-rs/chore/impl-cleanups
  • 1419e91 clean up and refactor main lib tests
  • ceeaf4b ensure we don't overflow on counters less than 12
  • 63bc8f5 Merge pull request #873 from uuid-rs/fix/error-msg
  • Additional commits viewable in compare view

Updates postgres from 0.19.12 to 0.19.13

Release notes

Sourced from postgres's releases.

postgres v0.19.13

Added

  • Added Client::execute_typed method.
  • Added Client::query_typed_one and Client::query_typed_opt methods.
  • Added GenericClient::execute_typed, GenericClient::query_typed_one, and GenericClient::query_typed_opt methods.
  • Added Transaction::execute_typed, Transaction::query_typed_one, and Transaction::query_typed_opt methods.
  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.
Commits
  • bd92e54 Release postgres v0.19.13
  • 35a85bd Release tokio-postgres v0.7.17
  • 64674ba Release postgres-types v0.2.13
  • 40b760d Release postgres-derive v0.4.8
  • 6c92298 Release postgres-protocol v0.6.11
  • e088d7d style(clippy): fix clippy::useless_conversion
  • 19897e8 build(deps): upgrade semver compatible Rust dependencies
  • 2584926 build(deps): upgrade RustCrypto dependencies
  • 10a7724 chore: add bit-vec v0.9 support
  • 2853157 fix: cargo fmt --all
  • Additional commits viewable in compare view

Updates lettre from 0.11.19 to 0.11.20

Release notes

Sourced from lettre's releases.

v0.11.20

Upgrade notes

Features

  • Add Address::new_dangerous #1107

Misc

  • Replace chumsky with nom for email address parsing #1099
  • Upgrade to Rust 2024 edition #1130
  • Upgrade boring and tokio-boring to v5 #1130
Changelog

Sourced from lettre's changelog.

v0.11.20 (2026-03-28)

Upgrade notes

  • MSRV is now 1.85 (#1130)

Features

  • Add Address::new_dangerous (#1107)

Misc

  • Replace chumsky with nom for email address parsing (#1099)
  • Upgrade to Rust 2024 edition (#1130)
  • Upgrade boring and tokio-boring to v5 (#1130)

#1099: lettre/lettre#1099 #1107: lettre/lettre#1107 #1130: lettre/lettre#1130

Commits
  • 134b720 Prepare v0.11.20
  • 3321bff refactor: replace chumsky with nom
  • 7d5f52d feat: add Address::new_unchecked
  • b905242 build(deps): upgrade maud to v0.27
  • 80297f4 build(deps): upgrade criterion to v0.7
  • 47f3837 build(deps): upgrade boring to v5
  • a4c26e9 style: fix boring deprecation warning
  • 3ba0b96 style(clippy): fix latest warnings
  • 6d8cadf build(deps): upgrade semver compatible Rust dependencies
  • 8442a59 style: remove import of Future
  • Additional commits viewable in compare view

Updates opentelemetry-otlp from 0.31.0 to 0.31.1

Release notes

Sourced from opentelemetry-otlp's releases.

opentelemetry-otlp 0.31.1

What's Changed

Full Changelog: open-telemetry/opentelemetry-rust@v0.31.0...opentelemetry-otlp-0.31.1

Commits
  • febe718 feat(OTLP): add tls-ring, tls-aws-lc, and tls-provider-agnostic feature flags...
  • See full diff in compare view

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 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the rust-all group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [toml](https://github.com/toml-rs/toml) | `1.0.6+spec-1.1.0` | `1.0.7+spec-1.1.0` |
| [zip](https://github.com/zip-rs/zip2) | `8.2.0` | `8.4.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.22.0` | `1.23.0` |
| [postgres](https://github.com/rust-postgres/rust-postgres) | `0.19.12` | `0.19.13` |
| [lettre](https://github.com/lettre/lettre) | `0.11.19` | `0.11.20` |
| [opentelemetry-otlp](https://github.com/open-telemetry/opentelemetry-rust) | `0.31.0` | `0.31.1` |



Updates `toml` from 1.0.6+spec-1.1.0 to 1.0.7+spec-1.1.0
- [Commits](toml-rs/toml@toml-v1.0.6...toml-v1.0.7)

Updates `zip` from 8.2.0 to 8.4.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v8.2.0...v8.4.0)

Updates `uuid` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.22.0...v1.23.0)

Updates `postgres` from 0.19.12 to 0.19.13
- [Release notes](https://github.com/rust-postgres/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@postgres-v0.19.12...postgres-v0.19.13)

Updates `lettre` from 0.11.19 to 0.11.20
- [Release notes](https://github.com/lettre/lettre/releases)
- [Changelog](https://github.com/lettre/lettre/blob/master/CHANGELOG.md)
- [Commits](lettre/lettre@v0.11.19...v0.11.20)

Updates `opentelemetry-otlp` from 0.31.0 to 0.31.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md)
- [Commits](open-telemetry/opentelemetry-rust@v0.31.0...opentelemetry-otlp-0.31.1)

---
updated-dependencies:
- dependency-name: toml
  dependency-version: 1.0.7+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-all
- dependency-name: zip
  dependency-version: 8.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-all
- dependency-name: uuid
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-all
- dependency-name: postgres
  dependency-version: 0.19.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-all
- dependency-name: lettre
  dependency-version: 0.11.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-all
- dependency-name: opentelemetry-otlp
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-all
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions
Copy link
Copy Markdown

PR Intake Checks - Warnings (non-blocking)

The following are recommendations:

  • Missing sections: Summary, Problem statement, Proposed solution, Acceptance criteria

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants