Skip to content

deps(deps): bump the rust-runtime group across 1 directory with 10 updates - #74

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rustytime/main/rust-runtime-3e0ce7fb04
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rustytime/main/rust-runtime-3e0ce7fb04

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 25, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the rust-runtime group with 10 updates in the /rustytime directory:

Package From To
diesel 2.3.7 2.3.9
diesel_migrations 2.3.1 2.3.2
tokio 1.52.1 1.52.3
tower-http 0.6.8 0.6.11
serde_json 1.0.149 1.0.150
reqwest 0.13.2 0.13.3
pyroscope 2.0.0 2.0.4
apalis-postgres 1.0.0-rc.7 1.0.0-rc.8
apalis-cron 1.0.0-rc.7 1.0.0-rc.8
serde_qs 1.1.1 1.1.2

Updates diesel from 2.3.7 to 2.3.9

Changelog

Sourced from diesel's changelog.

[2.3.9] 2026-04-30

  • Removed a dbg! statement from the Mysql backend that caused unwanted output
  • Fix a regression in #[derive(AsChangeset)] introduced in 2.3.8 where structs with a type or const generic parameter referenced in a field type failed to compile with error[E0425]: cannot find type 'T' in this scope. The diagnostic helper functions added to improve AsChangeset error messages now forward all generic parameters of the input struct, not only lifetimes.

[2.3.8] 2026-04-24

  • Added support for libsqlite3-sys 0.37.0
  • Raise a compile-time error when mixing aggregate and non-aggregate expressions in an ORDER BY clause without a GROUP BY clause
  • Calling .count() or .select(aggregate_expr) on a query that already has a non-aggregate .order_by() clause now raises a compile-time error instead of generating invalid SQL that would be rejected by the database at runtime (fixes #3815)
  • Added documentation for migration transaction behaviour at the crate root
  • Improved compile time error messages for #[derive(AsChangeset)]
  • Allow to use generic types in infix_operator!()
  • Fixes for several instances of unsound, unspecified or otherwise dangerous behaviour:
    • Unsound string construction in SqliteValue::read_text/FromSql<Text, Sqlite> for String
    • Invalid alignment for over aligned data in SqliteConnection::register_function for aggregate functions
    • Potential memory leaks in SqliteConnection::register_function
    • Access to padding bytes while serializing Date/time types in the Mysql backend
    • SQL Option Injection in PostgreSQL COPY FROM/TO
    • Unspecified pointer cast in Debug/Display implementation of batch INSERT statements for SQLite
    • Invalid call order of SQLite API functions in SqliteValue::read_text/FromSql<Text, Sqlite> for String/SqliteValue::read_blob()/FromSql<Binary, Sqlite> for Vec<u8>
    • Potential unsound pointer access for FromSql<Binary, _> for Vec<u8> and FromSql<Text, _> for String for third party backends (requires changes to the third party backend as well)
Commits
  • 2e7eb35 Also bump derives version
  • b3a16a3 Merge pull request #5046 from apastrana6/ap/fix-derive-as-changeset
  • 9f0a6c1 Prepare a 2.3.9 release
  • adcc896 Enable some clippy lints to prevent having dbg in a release again
  • 66760df Remove MySQL time serializer debug output
  • 58820dc Merge pull request #5036 from weiznich/prepare_2.3.8
  • 895b5ba Prepare a 2.3.8 release
  • ea008d3 Fix several UB instances
  • 64003c6 Merge pull request #5034 from ayarotsky/fix-reject-aggregate-select-with-non-...
  • 49b936e Merge pull request #5012 from ayarotsky/fix-aggregate-expressions-and-order-by
  • Additional commits viewable in compare view

Updates diesel_migrations from 2.3.1 to 2.3.2

Release notes

Sourced from diesel_migrations's releases.

Diesel 2.3.2

Fixed

  • Fixed an incompatibility with libmariadb versions shipped by debian
  • Fixed docs.rs builds
  • Fixed applying patch file schema.rs file with formatting
  • Allow to compare DatabaseErrorKind values

(Diesel 2.3.1 did not contain any changes beside the version bump to retrigger the docs.rs build)

Full Changelog: diesel-rs/diesel@v2.3.0...v2.3.2

You can support the development of Diesel by:

  • Contributing Code, Documentation or Guides. Checkout the planing for Diesel 2.4 for open tasks.
  • Providing knowledge and help to maintain the MySQL/MariaDB backend. This is currently the only in-tree backend that is not used by any maintainers, so having someone around that actually uses this backend would be very helpful for the Diesel project.
  • Answering questions in our discussion forum
  • Reporting bugs in our issue tracker
  • Helping triaging issues in our issue tracker
  • Sponsoring the maintainers.
Changelog

Sourced from diesel_migrations's changelog.

[2.3.2] 2025-09-19

Fixed

  • Fixed an incompatibility with libmariadb versions shipped by debian
  • Fixed docs.rs builds
  • Fixed applying patch file schema.rs file with formatting
  • Allow to compare DatabaseErrorKind values
Commits

Updates tokio from 1.52.1 to 1.52.3

Release notes

Sourced from tokio's releases.

Tokio v1.52.3

1.52.3 (May 8th, 2026)

Fixed

  • sync: fix underflow in mpsc channel len() (#8062)
  • sync: notify receivers in mpsc OwnedPermit::release() method (#8075)
  • sync: require that an RwLock has max_readers != 0 (#8076)
  • sync: return Empty from try_recv() when mpsc is closed with outstanding permits (#8074)

#8062: tokio-rs/tokio#8062 #8074: tokio-rs/tokio#8074 #8075: tokio-rs/tokio#8075 #8076: tokio-rs/tokio#8076

Tokio v1.52.2

1.52.2 (May 4th, 2026)

This release reverts the LIFO slot stealing change introduced in 1.51.0 (#7431), due to [its performance impact]#8065. (#8100)

#7431: tokio-rs/tokio#7431 #8065: tokio-rs/tokio#8065 #8100: tokio-rs/tokio#8100

Commits

Updates tower-http from 0.6.8 to 0.6.11

Release notes

Sourced from tower-http's releases.

tower-http-0.6.11

Added

  • set-header: add SetMultipleResponseHeadersLayer and SetMultipleResponseHeader for setting multiple response headers at once. Supports overriding, appending, and if_not_present modes. Header values can be fixed or computed dynamically via closures (#672)

    use http::{Response, header::{self, HeaderValue}};
    use http_body::Body as _;
    use tower_http::set_header::response::SetMultipleResponseHeadersLayer;
    let layer = SetMultipleResponseHeadersLayer::overriding(vec![
    (header::X_FRAME_OPTIONS, HeaderValue::from_static("DENY")).into(),
    (header::CONTENT_LENGTH, |res: &Response<MyBody>| {
    res.body().size_hint().exact()
    .map(|size| HeaderValue::from_str(&size.to_string()).unwrap())
    }).into(),
    ]);

  • set-header: add SetMultipleRequestHeadersLayer and SetMultipleRequestHeaders for setting multiple request headers at once, mirroring the response-side API (#677)

  • classify: add From<i32> and From<NonZeroI32> impls for GrpcCode. Unrecognized status codes map to GrpcCode::Unknown (#506)

Changed

  • compression: compress application/grpc-web responses. Previously all application/grpc* content types were excluded from compression; now only application/grpc (non-web) is excluded (#408)

Fixed

  • fs: fix ServeDir returning 500 instead of 405 for non-GET/HEAD requests when call_fallback_on_method_not_allowed is enabled but no fallback service is configured (#587)
  • fs: remove duplicate cfg attribute on is_reserved_dos_name (#675)

#408: tower-rs/tower-http#408 #506: tower-rs/tower-http#506 #587: tower-rs/tower-http#587 #672: tower-rs/tower-http#672 #675: tower-rs/tower-http#675 #677: tower-rs/tower-http#677

All PRs

... (truncated)

Commits
  • 1d082ef v0.6.11
  • 9c3117d feat: set multiple request header (#677)
  • 667e7c7 Remove duplicate cfg attribute for is_reserved_dos_name (#675)
  • 7551a9b feat(set_header): refactor and improve multiple header middleware (#672)
  • 991e9ee add From<i32> impl for GrpcCode (#506)
  • 3962dba Do compress grpc-web responses (#408)
  • f0b3bb6 Fix serve_dir method not allowed handling when no fallback is configured (#587)
  • d1a571b ci: use static timeout in stress-test workflow (#671)
  • 309555a ci: fix flaky encoding test, add nightly stress test job (#670)
  • 4532fc2 v0.6.10
  • Additional commits viewable in compare view

Updates serde_json from 1.0.149 to 1.0.150

Release notes

Sourced from serde_json's releases.

v1.0.150

Commits
  • a1ae73a Release 1.0.150
  • 1a360b0 Merge pull request #1324 from puneetdixit200/reject-non-string-enum-keys
  • 2037b63 Reject non-string enum object keys
  • 5d30df6 Resolve manual_assert_eq pedantic clippy lint
  • dc8003a Raise required compiler for preserve_order feature to 1.85
  • a42fa98 Unpin CI miri toolchain
  • 684a60e Pin CI miri to nightly-2026-02-11
  • 7c7da33 Raise required compiler to Rust 1.71
  • acf4850 Simplify Number::is_f64
  • 6b8ceab Resolve unnecessary_map_or clippy lint
  • Additional commits viewable in compare view

Updates reqwest from 0.13.2 to 0.13.3

Release notes

Sourced from reqwest's releases.

v0.13.3

tl;dr

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.13.2...v0.13.3

Changelog

Sourced from reqwest's changelog.

v0.13.3

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.
Commits

Updates pyroscope from 2.0.0 to 2.0.4

Release notes

Sourced from pyroscope's releases.

lib: v2.0.4

2.0.4 (2026-05-20)

Bug Fixes

  • do not recreate profiling guard, just reset the data (#518) (b1fe114)
  • remove kindasafe CI leftovers (#521) (f8bc0f3)

Miscellaneous Chores

  • deps: bump openssl from 0.10.79 to 0.10.80 (#548) (f3ed911)
  • deps: lock file maintenance (#535) (9554564)
  • deps: lock file maintenance (#541) (3abc7b6)
  • deps: lock file maintenance (#547) (cd30ebf)
  • deps: pin rust docker tag to a9cfb75 (#544) (ea14091)
  • deps: remove names crate dependency (#527) (5893aac)
  • deps: update rust crate libc to v0.2.186 (#533) (a7468c1)
  • deps: update rust crate reqwest to v0.13.3 (#539) (b8c6fbb)
  • deps: update rust:trixie docker digest to a9cfb75 (#538) (bff1d5d)
  • renovate: vulnerabilities-only with profiling deps allowlist (#540) (4aa8e56)

Continuous Integration

  • add ARM cross-compilation test job (#536) (54bb03f)
  • auto-publish to crates.io after release-please PR merge (#529) (a4f76b6)
  • Potential fix for code scanning alert no. 14: Workflow does not contain permissions (#542) (51ac4b7)

pyroscope-lib-2.0.3

What's Changed

New Contributors

Full Changelog: grafana/pyroscope-rs@lib-2.0.2...lib-2.0.3

pyroscope-lib-2.0.2

What's Changed

... (truncated)

Changelog

Sourced from pyroscope's changelog.

2.0.4 (2026-05-20)

Bug Fixes

  • do not recreate profiling guard, just reset the data (#518) (b1fe114)
  • remove kindasafe CI leftovers (#521) (f8bc0f3)

Miscellaneous Chores

  • deps: bump openssl from 0.10.79 to 0.10.80 (#548) (f3ed911)
  • deps: lock file maintenance (#535) (9554564)
  • deps: lock file maintenance (#541) (3abc7b6)
  • deps: lock file maintenance (#547) (cd30ebf)
  • deps: pin rust docker tag to a9cfb75 (#544) (ea14091)
  • deps: remove names crate dependency (#527) (5893aac)
  • deps: update rust crate libc to v0.2.186 (#533) (a7468c1)
  • deps: update rust crate reqwest to v0.13.3 (#539) (b8c6fbb)
  • deps: update rust:trixie docker digest to a9cfb75 (#538) (bff1d5d)
  • renovate: vulnerabilities-only with profiling deps allowlist (#540) (4aa8e56)

Continuous Integration

  • add ARM cross-compilation test job (#536) (54bb03f)
  • auto-publish to crates.io after release-please PR merge (#529) (a4f76b6)
  • Potential fix for code scanning alert no. 14: Workflow does not contain permissions (#542) (51ac4b7)

2.0.3 (2026-04-26)

Bug Fixes

  • epoll: use libc::c_long for itimerspec fields (#532) (093406e)

Miscellaneous Chores

  • deps: update googleapis/release-please-action action to v5 (#530) (6c97b9d)

2.0.2 (2026-04-24)

Miscellaneous Chores

  • deps: bump rustls-webpki from 0.103.12 to 0.103.13 (#524) (935384d)
  • deps: lock file maintenance (#522) (4bd95bb)
  • deps: update dependency ruby to v4.0.3 (#523) (e126aa2)
  • deps: update rust:trixie docker digest to e4f09e8 (#515) (f450327)

... (truncated)

Commits
  • f9c9514 chore(main): release lib 2.0.4 (#534)
  • f3ed911 chore(deps): bump openssl from 0.10.79 to 0.10.80 (#548)
  • a4f76b6 ci: auto-publish to crates.io after release-please PR merge (#529)
  • 5893aac chore(deps): remove names crate dependency (#527)
  • 51ac4b7 ci: Potential fix for code scanning alert no. 14: Workflow does not contain p...
  • cd30ebf chore(deps): lock file maintenance (#547)
  • 4aa8e56 chore(renovate): vulnerabilities-only with profiling deps allowlist (#540)
  • ea14091 chore(deps): pin rust docker tag to a9cfb75 (#544)
  • f8bc0f3 fix: remove kindasafe CI leftovers (#521)
  • 54bb03f ci: add ARM cross-compilation test job (#536)
  • Additional commits viewable in compare view

Updates apalis-postgres from 1.0.0-rc.7 to 1.0.0-rc.8

Release notes

Sourced from apalis-postgres's releases.

v1.0.0-rc.8

What's Changed

New Contributors

Full Changelog: apalis-dev/apalis-postgres@v1.0.0-rc.7...v1.0.0-rc.8

Changelog

Sourced from apalis-postgres's changelog.

[1.0.0-rc.8] - 2026-05-08

  • feat: idempotency for tasks (#81)
  • chore: make JsonCodec publicly accessible (#79)
Commits
  • 5a93021 bump: to v1.0.0-rc.8 (#82)
  • a4b03cb ci(deps): bump cargo-bins/cargo-binstall from 1.17.9 to 1.19.1 (#80)
  • 810b71c ci(deps): bump pozil/auto-assign-issue from 2 to 3 (#77)
  • 605adfb feat: idempotency for tasks (#81)
  • 4a8d035 chore: Make JsonCodec publicly accessible (#79)
  • 33f8f3b ci(deps): bump codecov/codecov-action from 5 to 6 (#70)
  • 7f8f113 ci(deps): bump cargo-bins/cargo-binstall from 1.17.7 to 1.17.9 (#69)
  • See full diff in compare view

Updates apalis-cron from 1.0.0-rc.7 to 1.0.0-rc.8

Release notes

Sourced from apalis-cron's releases.

v1.0.0-rc.8

What's Changed

Full Changelog: apalis-dev/apalis-cron@v1.0.0-rc.7...v1.0.0-rc.8

Changelog

Sourced from apalis-cron's changelog.

[1.0.0-rc.8] - 2026-05-08

  • bump: to v1.0.0-rc.8 (#51)
Commits

Updates serde_qs from 1.1.1 to 1.1.2

Release notes

Sourced from serde_qs's releases.

v1.1.2

Fixed

  • do not strict-validate ignored compound fields (#168)
Changelog

Sourced from serde_qs's changelog.

1.1.2 - 2026-05-15

Fixed

  • do not strict-validate ignored compound fields (#168)
Commits

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

…dates

Bumps the rust-runtime group with 10 updates in the /rustytime directory:

| Package | From | To |
| --- | --- | --- |
| [diesel](https://github.com/diesel-rs/diesel) | `2.3.7` | `2.3.9` |
| [diesel_migrations](https://github.com/diesel-rs/diesel) | `2.3.1` | `2.3.2` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.52.1` | `1.52.3` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.6.8` | `0.6.11` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.149` | `1.0.150` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.13.2` | `0.13.3` |
| [pyroscope](https://github.com/grafana/pyroscope-rs) | `2.0.0` | `2.0.4` |
| [apalis-postgres](https://github.com/apalis-dev/apalis-postgres) | `1.0.0-rc.7` | `1.0.0-rc.8` |
| [apalis-cron](https://github.com/apalis-dev/apalis-cron) | `1.0.0-rc.7` | `1.0.0-rc.8` |
| [serde_qs](https://github.com/samscott89/serde_qs) | `1.1.1` | `1.1.2` |



Updates `diesel` from 2.3.7 to 2.3.9
- [Release notes](https://github.com/diesel-rs/diesel/releases)
- [Changelog](https://github.com/diesel-rs/diesel/blob/main/CHANGELOG.md)
- [Commits](diesel-rs/diesel@v2.3.7...v2.3.9)

Updates `diesel_migrations` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/diesel-rs/diesel/releases)
- [Changelog](https://github.com/diesel-rs/diesel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/diesel-rs/diesel/commits/v2.3.2)

Updates `tokio` from 1.52.1 to 1.52.3
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.52.1...tokio-1.52.3)

Updates `tower-http` from 0.6.8 to 0.6.11
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.6.8...tower-http-0.6.11)

Updates `serde_json` from 1.0.149 to 1.0.150
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.149...v1.0.150)

Updates `reqwest` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.13.2...v0.13.3)

Updates `pyroscope` from 2.0.0 to 2.0.4
- [Release notes](https://github.com/grafana/pyroscope-rs/releases)
- [Changelog](https://github.com/grafana/pyroscope-rs/blob/main/CHANGELOG.md)
- [Commits](grafana/pyroscope-rs@lib-2.0.0...lib-2.0.4)

Updates `apalis-postgres` from 1.0.0-rc.7 to 1.0.0-rc.8
- [Release notes](https://github.com/apalis-dev/apalis-postgres/releases)
- [Changelog](https://github.com/apalis-dev/apalis-postgres/blob/main/CHANGELOG.md)
- [Commits](apalis-dev/apalis-postgres@v1.0.0-rc.7...v1.0.0-rc.8)

Updates `apalis-cron` from 1.0.0-rc.7 to 1.0.0-rc.8
- [Release notes](https://github.com/apalis-dev/apalis-cron/releases)
- [Changelog](https://github.com/apalis-dev/apalis-cron/blob/main/CHANGELOG.md)
- [Commits](apalis-dev/apalis-cron@v1.0.0-rc.7...v1.0.0-rc.8)

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

---
updated-dependencies:
- dependency-name: diesel
  dependency-version: 2.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: diesel_migrations
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: tokio
  dependency-version: 1.52.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: tower-http
  dependency-version: 0.6.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: serde_json
  dependency-version: 1.0.150
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: reqwest
  dependency-version: 0.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: pyroscope
  dependency-version: 2.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: apalis-postgres
  dependency-version: 1.0.0-rc.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: apalis-cron
  dependency-version: 1.0.0-rc.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
- dependency-name: serde_qs
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-runtime
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies rust Pull requests that update rust code labels May 25, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 1, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/rustytime/main/rust-runtime-3e0ce7fb04 branch June 1, 2026 20:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants