Skip to content

chore(deps): bump the all-dependencies group across 1 directory with 8 updates#695

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/all-dependencies-41917c7b15
Open

chore(deps): bump the all-dependencies group across 1 directory with 8 updates#695
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/all-dependencies-41917c7b15

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-dependencies group with 8 updates in the / directory:

Package From To
async-graphql 8.0.0-rc.3 8.0.0-rc.4
cached 0.56.0 0.58.0
chrono 0.4.43 0.4.44
tracing-subscriber 0.3.22 0.3.23
opentelemetry-otlp 0.31.0 0.31.1
strum 0.27.2 0.28.0
lalrpop-util 0.23.0 0.23.1
lalrpop 0.23.0 0.23.1

Updates async-graphql from 8.0.0-rc.3 to 8.0.0-rc.4

Changelog

Sourced from async-graphql's changelog.

[8.0.0-rc.4] 2026-03-08

  • Fix MergedObject/MergedSubscription exceeding compiler recursion limit with 130+ merged types by using balanced binary tree instead of linear chain #1813
  • Replace deprecated actix-web-actors with actix-ws in the Actix integration #1811
  • Fix InputObject with generics failing to compile when using name_type attribute #1812
  • feat: Adds flatten support for generic type params in InputObject #1804
Commits

Updates cached from 0.56.0 to 0.58.0

Changelog

Sourced from cached's changelog.

[0.58.0]

Added

  • Add redis_async_cache feature for Redis client-side caching support via the RESP3 protocol

Changed

  • Update redis to 1.0

Removed

[0.57.0 / [cached_proc_macro[0.26.0]]]

Added

  • Add parking_lot dependency

Changed

  • Switch to parking_lot's Mutex and RwLock in all macros.
  • Remove unwrap() calls from lock operations.

Removed

Commits

Updates chrono from 0.4.43 to 0.4.44

Release notes

Sourced from chrono's releases.

0.4.44

What's Changed

Commits
  • c14b459 Bump version to 0.4.44
  • ea832c5 Add track_caller to non-deprecated functions
  • cfae889 Fix panic message in to_rfc2822
  • f8900b5 docs: match MSRV with Cargo.toml contents
  • See full diff in compare view

Updates tracing-subscriber from 0.3.22 to 0.3.23

Release notes

Sourced from tracing-subscriber's releases.

tracing-subscriber 0.3.23

Fixed

  • Allow ansi sanitization to be disabled (#3484)

#3484: tokio-rs/tracing#3484

Commits

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

Updates strum from 0.27.2 to 0.28.0

Changelog

Sourced from strum's changelog.

0.28.0

  • #461: Allow any kind of passthrough attributes on EnumDiscriminants.

    • Previously only list-style attributes (e.g. #[strum_discriminants(derive(...))]) were supported. Now path-only (e.g. #[strum_discriminants(non_exhaustive)]) and name/value (e.g. #[strum_discriminants(doc = "foo")]) attributes are also supported.
  • #462: Add missing #[automatically_derived] to generated impls not covered by #444.

  • #466: Bump MSRV to 1.71, required to keep up with updated syn and windows-sys dependencies. This is a breaking change if you're on an old version of rust.

  • #469: Use absolute paths in generated proc macro code to avoid potential name conflicts.

  • #465: Upgrade phf dependency to v0.13.

  • #473: Fix cargo fmt / clippy issues and add GitHub Actions CI.

  • #477: strum::ParseError now implements core::fmt::Display instead std::fmt::Display to make it #[no_std] compatible. Note the Error trait wasn't available in core until 1.81 so strum::ParseError still only implements that in std.

  • #476: Breaking Change - EnumString now implements From<&str> (infallible) instead of TryFrom<&str> when the enum has a #[strum(default)] variant. This more accurately reflects that parsing cannot fail in that case. If you need the old TryFrom behavior, you can opt back in using parse_error_ty and parse_error_fn:

    #[derive(EnumString)]
    #[strum(parse_error_ty = strum::ParseError, parse_error_fn = make_error)]
    pub enum Color {
        Red,
        #[strum(default)]
        Other(String),
    }
    fn make_error(x: &str) -> strum::ParseError {
    strum::ParseError::VariantNotFound
    }

  • #431: Fix bug where EnumString ignored the parse_err_ty attribute when the enum had a #[strum(default)] variant.

  • #474: EnumDiscriminants will now copy default over from the original enum to the Discriminant enum.

    #[derive(Debug, Default, EnumDiscriminants)]
    #[strum_discriminants(derive(Default))] // <- Remove this in 0.28.
    enum MyEnum {
        #[default] // <- Will be the #[default] on the MyEnumDiscriminant
        #[strum_discriminants(default)] // <- Remove this in 0.28
        Variant0,
        Variant1 { a: NonDefault },
    }

... (truncated)

Commits
  • 7376771 Peternator7/0.28 (#475)
  • 26e63cd Display exists in core (#477)
  • 9334c72 Make TryFrom and FromStr infallible if there's a default (#476)
  • 0ccbbf8 Honor parse_err_ty attribute when the enum has a default variant (#431)
  • 2c9e5a9 Automatically add Default implementation to EnumDiscriminant if it exists on ...
  • e241243 Fix existing cargo fmt + clippy issues and add GH actions (#473)
  • 639b67f feat: allow any kind of passthrough attributes on EnumDiscriminants (#461)
  • 0ea1e2d docs: Fix typo (#463)
  • 36c051b Upgrade phf to v0.13 (#465)
  • 9328b38 Use absolute paths in proc macro (#469)
  • Additional commits viewable in compare view

Updates lalrpop-util from 0.23.0 to 0.23.1

Changelog

Sourced from lalrpop-util's changelog.

0.23.1 (2026-03-11)

Bigfixes

  • Fix bug where windows paths were used based on target OS rather than host OS, breaking cross compile scenarios

Commits

Updates lalrpop from 0.23.0 to 0.23.1

Changelog

Sourced from lalrpop's changelog.

0.23.1 (2026-03-11)

Bigfixes

  • Fix bug where windows paths were used based on target OS rather than host OS, breaking cross compile scenarios

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

Note

Medium Risk
This is a dependency-only update but touches core runtime libraries (GraphQL, caching, tracing/OTLP, and parsing), which can introduce subtle compile/runtime behavior changes despite no application code changes.

Overview
Updates workspace dependency versions in Cargo.toml and refreshes Cargo.lock, bumping async-graphql to 8.0.0-rc.4, cached to 0.58, chrono to 0.4.44, tracing-subscriber to 0.3.23, opentelemetry-otlp to 0.31.1, strum to 0.28, and lalrpop/lalrpop-util to 0.23.1.

Lockfile changes include associated transitive updates (e.g., bit-set/bit-vec to 0.9.1, hashbrown to 0.16.1, and additional cached deps like parking_lot) and some windows-sys version shifts.

Written by Cursor Bugbot for commit 0a17067. This will update automatically on new commits. Configure here.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 26, 2026
@dependabot dependabot bot force-pushed the dependabot/cargo/all-dependencies-41917c7b15 branch from ce53361 to 5c9370d Compare March 26, 2026 20:46
…8 updates

Bumps the all-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-graphql](https://github.com/async-graphql/async-graphql) | `8.0.0-rc.3` | `8.0.0-rc.4` |
| [cached](https://github.com/jaemk/cached) | `0.56.0` | `0.58.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.43` | `0.4.44` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.22` | `0.3.23` |
| [opentelemetry-otlp](https://github.com/open-telemetry/opentelemetry-rust) | `0.31.0` | `0.31.1` |
| [strum](https://github.com/Peternator7/strum) | `0.27.2` | `0.28.0` |
| [lalrpop-util](https://github.com/lalrpop/lalrpop) | `0.23.0` | `0.23.1` |
| [lalrpop](https://github.com/lalrpop/lalrpop) | `0.23.0` | `0.23.1` |



Updates `async-graphql` from 8.0.0-rc.3 to 8.0.0-rc.4
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `cached` from 0.56.0 to 0.58.0
- [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jaemk/cached/commits)

Updates `chrono` from 0.4.43 to 0.4.44
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.43...v0.4.44)

Updates `tracing-subscriber` from 0.3.22 to 0.3.23
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.22...tracing-subscriber-0.3.23)

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)

Updates `strum` from 0.27.2 to 0.28.0
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.2...v0.28.0)

Updates `lalrpop-util` from 0.23.0 to 0.23.1
- [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md)
- [Commits](lalrpop/lalrpop@0.23.0...0.23.1)

Updates `lalrpop` from 0.23.0 to 0.23.1
- [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md)
- [Commits](lalrpop/lalrpop@0.23.0...0.23.1)

---
updated-dependencies:
- dependency-name: async-graphql
  dependency-version: 8.0.0-rc.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cached
  dependency-version: 0.58.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: chrono
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: tracing-subscriber
  dependency-version: 0.3.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: opentelemetry-otlp
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: strum
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: lalrpop-util
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: lalrpop
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/all-dependencies-41917c7b15 branch from 5c9370d to 0a17067 Compare March 26, 2026 20:49
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 26, 2026

📊 Performance Report

Commit: 0a17067
Updated: 2026-03-26 21:06:08 UTC

Cala Performance Benchmark Results (non-representative)

Criterion Benchmark Results (single-threaded)

Benchmark Time per Run Throughput % vs Baseline
post_simple_transaction 6.215ms 160 tx/s 0 (baseline)
post_multi_layer_transaction 7.045ms 141 tx/s -13.0%
post_simple_transaction_with_effective_balances 8.403ms 119 tx/s -35.0%
post_simple_transaction_with_skipped_velocity 5.976ms 167 tx/s +3.0%
post_simple_transaction_with_velocity 9.734ms 102 tx/s -56.0%
post_simple_transaction_with_hit_velocity 3.818ms 261 tx/s +38.0%
post_simple_transaction_with_one_account_set 6.605ms 151 tx/s -6.0%
post_simple_transaction_with_five_account_sets 7.528ms 132 tx/s -21.0%

Load Testing Results (parallel-execution)

Scenario tx/s
1 parallel 98.17
2 parallel 133.09
5 parallel 172.39
10 parallel 174.59
20 parallel 173.22
2 contention 129.74
5 contention 149.41
2 acct_sets 121.35
5 acct_sets 134.09

Note: Performance results may vary based on system resources and database state.

Last updated by commit 0a17067

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