Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 11, 2026

Bumps the deps group with 26 updates:

Package From To
alloy-primitives 1.4.1 1.5.2
alloy-sol-types 1.4.1 1.5.2
anyhow 1.0.98 1.0.100
askama 0.14.0 0.15.1
clap 4.5.40 4.5.54
convert_case 0.7.1 0.10.0
genco 0.17.10 0.19.0
handlebars 4.5.0 6.4.0
hashbrown 0.15.4 0.16.1
insta 1.44.1 1.46.0
lalrpop 0.20.2 0.22.2
lalrpop-util 0.20.2 0.22.2
log 0.4.27 0.4.29
logos 0.13.0 0.16.0
mockall 0.12.1 0.14.0
prettyplease 0.2.34 0.2.37
proc-macro2 1.0.103 1.0.105
rustdoc-types 0.56.0 0.57.0
quote 1.0.40 1.0.43
spin 0.9.8 0.10.0
syn 2.0.111 2.0.114
thiserror 2.0.12 2.0.17
toml_edit 0.22.24 0.23.5
tokio 1.48.0 1.49.0
tokio-stream 0.1.17 0.1.18
trybuild 1.0.105 1.0.114

Updates alloy-primitives from 1.4.1 to 1.5.2

Release notes

Sourced from alloy-primitives's releases.

alloy-core v1.5.1

What's Changed

Full Changelog: alloy-rs/core@v1.5.0...v1.5.1

alloy-core v1.5.0

What's Changed

New Contributors

Full Changelog: alloy-rs/core@v1.4.1...v1.5.0

Changelog

Sourced from alloy-primitives's changelog.

1.5.2 - 2025-12-22

Performance

  • [primitives] Always use FxHash for Fb* (#1054)

1.5.1 - 2025-12-18

Features

  • Extract cache to a separate crate (#1053)
  • [primitives] Add U256Map (#1052)

Miscellaneous Tasks

  • Release 1.5.1

1.5.0 - 2025-12-16

Bug Fixes

  • [primitives] Cache keccaks up to 88 bytes (#1049)

Documentation

  • Document allow(unexpected_cfgs) for wrap_fixed_bytes (#1043)

Features

  • Add rapidhash to available hashers (#1051)
  • Add keccak256_uncached (#1050)
  • [primitives] Add UintTryTo trait for Signed type (#1029)
  • [primitives] Add keccak256_cached (#1046)
  • [primitives] Add Signature::as_rsy method (#1041)
  • Add Bloom::accrue_logs method (#1039)

Miscellaneous Tasks

  • Release 1.5.0
  • Rm all deprecations (#1048)
  • [doc] Complete alloy-dyn-abi readme (#1044)
  • Clippy (#1037)

Testing

  • [primitives] Use correct keccak fn
Commits

Updates alloy-sol-types from 1.4.1 to 1.5.2

Release notes

Sourced from alloy-sol-types's releases.

alloy-core v1.5.1

What's Changed

Full Changelog: alloy-rs/core@v1.5.0...v1.5.1

alloy-core v1.5.0

What's Changed

New Contributors

Full Changelog: alloy-rs/core@v1.4.1...v1.5.0

Changelog

Sourced from alloy-sol-types's changelog.

1.5.2 - 2025-12-22

Performance

  • [primitives] Always use FxHash for Fb* (#1054)

1.5.1 - 2025-12-18

Features

  • Extract cache to a separate crate (#1053)
  • [primitives] Add U256Map (#1052)

Miscellaneous Tasks

  • Release 1.5.1

1.5.0 - 2025-12-16

Bug Fixes

  • [primitives] Cache keccaks up to 88 bytes (#1049)

Documentation

  • Document allow(unexpected_cfgs) for wrap_fixed_bytes (#1043)

Features

  • Add rapidhash to available hashers (#1051)
  • Add keccak256_uncached (#1050)
  • [primitives] Add UintTryTo trait for Signed type (#1029)
  • [primitives] Add keccak256_cached (#1046)
  • [primitives] Add Signature::as_rsy method (#1041)
  • Add Bloom::accrue_logs method (#1039)

Miscellaneous Tasks

  • Release 1.5.0
  • Rm all deprecations (#1048)
  • [doc] Complete alloy-dyn-abi readme (#1044)
  • Clippy (#1037)

Testing

  • [primitives] Use correct keccak fn
Commits

Updates anyhow from 1.0.98 to 1.0.100

Release notes

Sourced from anyhow's releases.

1.0.100

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#426)

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)
Commits
  • 18c2598 Release 1.0.100
  • f271988 Merge pull request #426 from dtolnay/clippyfmt
  • 52f2115 Mark macros with clippy::format_args
  • da5fd9d Raise minimum tested compiler to rust 1.76
  • 211e409 Opt in to generate-macro-expansion when building on docs.rs
  • b48fc02 Enforce trybuild >= 1.0.108
  • d5f59fb Update ui test suite to nightly-2025-09-07
  • 238415d Update ui test suite to nightly-2025-08-24
  • 3bab070 Update actions/checkout@v4 -> v5
  • 4249254 Order cap-lints flag in the same order as thiserror build script
  • Additional commits viewable in compare view

Updates askama from 0.14.0 to 0.15.1

Release notes

Sourced from askama's releases.

v0.15.1

What's Changed

New Contributors

Full Changelog: askama-rs/askama@v0.15.0...v0.15.1

v0.15.0

The main breaking change is about custom filters, they now require the filter_fn attribute. More information about it in the askama book.

(❗ = breaking change)

New features

Major internal changes

Improve error location to give better errors:

Other

... (truncated)

Commits
  • 04436eb Merge pull request #650 from GuillaumeGomez/update-version
  • 5c55040 Update crates version to 0.15.1
  • 8c8379e Merge pull request #649 from GuillaumeGomez/filter-lifetimes
  • cfc0883 Update tests for lifetimes in filters
  • 40353f0 Add support for lifetimes in filters
  • 02cdd4f Merge pull request #648 from GuillaumeGomez/cleanup
  • 4d7b559 Remove forgotten commented code
  • c8df0a8 fix(derive): use call_site to avoid clippy false positives (#647)
  • f78f130 Merge pull request #646 from GuillaumeGomez/filter-arg-mut
  • eb94dec Add regression test for filters arguments mutability
  • Additional commits viewable in compare view

Updates clap from 4.5.40 to 4.5.54

Release notes

Sourced from clap's releases.

v4.5.54

[4.5.54] - 2026-01-02

Fixes

  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.53

[4.5.53] - 2025-11-19

Features

  • Add default_values_if, default_values_ifs

v4.5.52

[4.5.52] - 2025-11-17

Fixes

  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted

v4.5.48

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.54] - 2026-01-02

Fixes

  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

[4.5.53] - 2025-11-19

Features

  • Add default_values_if, default_values_ifs

[4.5.52] - 2025-11-17

Fixes

  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

[4.5.51] - 2025-10-29

Fixes

  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

[4.5.50] - 2025-10-20

Features

  • Accept Cow where String and &str are accepted

[4.5.49] - 2025-10-13

Fixes

  • (help) Correctly wrap when ANSI escape codes are present

[4.5.48] - 2025-09-19

Documentation

  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()

... (truncated)

Commits
  • 194c676 chore: Release
  • 44838f6 docs: Update changelog
  • 0f59d55 Merge pull request #6027 from Alpha1337k/master
  • 3716f9f chore: Release
  • 613b69a docs: Update changelog
  • d117f7a Merge pull request #6028 from epage/arg
  • cb8255d feat(builder): Allow quoted id's for arg macro
  • e2aa2f0 Feat: Add catch-all on external subcommands for zsh
  • b9c0aee Feat: Add external subcommands test to suite
  • 1036060 Merge pull request #6025 from AldaronLau/typos-in-faq
  • Additional commits viewable in compare view

Updates convert_case from 0.7.1 to 0.10.0

Commits

Updates genco from 0.17.10 to 0.19.0

Release notes

Sourced from genco's releases.

0.19.0

What's Changed

New Contributors

Full Changelog: udoprog/genco@0.18.1...0.19.0

0.18.1

What's Changed

New Contributors

Full Changelog: udoprog/genco@0.18.0...0.18.1

0.18.0

What's Changed

Full Changelog: udoprog/genco@0.17.10...0.18.0

Commits
  • bc71d93 Release 0.19.0
  • 87a9068 Rename walk_imports to iter_lang
  • 36b8992 Store offset directly in items
  • 3158b79 Hide implementation details of Item
  • 52d0da7 Hide implementation details of ItemStr
  • 68c3859 Update Swift to support implementationOnly imports (#62)
  • 7152aec Clean up implementations and documentation
  • a2e5115 Release 0.18.1
  • 24d4588 Backspace is 0x08 in java
  • aaac029 Fix lints
  • Additional commits viewable in compare view

Updates handlebars from 4.5.0 to 6.4.0

Release notes

Sourced from handlebars's releases.

v6.4.0

What's Changed

New Contributors

Full Changelog: sunng87/handlebars-rust@v6.3.2...v6.4.0

v6.3.2

What's Changed

Full Changelog: sunng87/handlebars-rust@v6.3.1...v6.3.2

v6.3.1

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from handlebars's changelog.

6.4.0 - 2026-01-02

  • [Fixed] Reimplement partial-block, fixed partial-block resolution issues #732
  • [Added] recursive_lookup mode #730

6.3.2 - 2025-03-16

  • [Fixed] Reimplementation of partial context #699

6.3.1 - 2025-02-09

  • [Fixed] Regression of partial context #694

6.3.0 - 2025-01-05

  • [Added] Builders for some non-exhaustive structs #688
  • [Changed] and and or helper now accepts multiple parameters #687
  • [Changed] MSRV is now 1.73

6.2.0 - 2024-10-26

  • [Added] @index variable for object iteration #682
  • [Changed] improve number comparison between different types #679

6.1.0 - 2024-09-06

  • [Added] More data type support in comparison helpers #673

6.0.0 - 2024-07-20

  • [Fixed] Various indent issue with partials, empty lines and helpers #646 #654 #658
  • [Fixed] Bug when accessing nested path #651
  • [Added] New public access to PathSeg #656
  • [Added] New API to set single block params in BlockContext #655
  • [Added] From<RenderError> for RenderErrorReason #644
  • [Changed] Add non_exhaustive attribute to all public memebers #647
  • [Changed] RenderContext API and improved performance for partial rendering #661 #662
  • [Changed] Improved error messsage for template parsing #638

5.1.2 - 2024-03-24

  • [Changed] Improved error message and syntax rule naming #638
  • [Changed] Updated heck to 0.5 #635

5.1.1 - 2024-01-18 Yanked

  • [Changed] Turned off pub access of chain in HelperTemplate

... (truncated)

Commits
  • 718db6b chore: Release handlebars version 6.4.0
  • 56056af chore: changelog maintain
  • 97998c6 fix: correct partial-block render (#732)
  • b61c383 chore(deps): bump qs and express in /playground/www (#731)
  • c349c39 chore(deps): update criterion requirement from 0.7 to 0.8 (#728)
  • ced248a Option to enable recursive resolution of variables (#730)
  • 8c50392 chore(deps-dev): bump node-forge from 1.3.1 to 1.3.2 in /playground/www (#727)
  • 36ebe04 Add Ability to Unregister Helpers (#725)
  • 4e3b2d5 Fix the build with -Zminimal-versions (#723)
  • 507cbf2 chore: fix lint in benchmark
  • Additional commits viewable in compare view

Updates hashbrown from 0.15.4 to 0.16.1

Release notes

Sourced from hashbrown's releases.

v0.16.1

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

v0.16.0

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.

v0.15.5

Added

  • Added Entry::or_default_entry and Entry::or_insert_entry.

Changed

  • Re-implemented likely/unlikely with #[cold]
Changelog

Sourced from hashbrown's changelog.

0.16.1 - 2025-11-20

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

0.16.0 - 2025-08-28

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.

0.15.5 - 2025-08-07

Added

  • Added Entry::or_default_entry and Entry::or_insert_entry.

Changed

  • Re-implemented likely/unlikely with #[cold]
Commits
  • 1876e4f Add PR link for get_disjoint_mut rename
  • 2e363b6 Update CHANGELOG for version 0.16.1
  • 88d54a5 chore: release v0.16.1
  • 21be06c Merge pull request #657 from cuviper/table-bucket
  • af971f3 Add T to bucket iterators and inline their methods
  • 7ccb6d6 Add HashTable::iter_buckets and iter_hash_buckets
  • aeb7996 Add HashTable::get_bucket_entry_unchecked
  • e885a4e get_bucket_entry -> Result\<OccupiedEntry, AbsentEntry>
  • dabfbef Add get_bucket_unchecked and get_bucket_unchecked_mut
  • 42d9377 Make HashTable entries use Tag instead of a full hash
  • Additional commits viewable in compare view

Updates insta from 1.44.1 to 1.46.0

Release notes

Sourced from insta's releases.

1.46.0

Release Notes

  • Add INSTA_PENDING_DIR environment variable for Bazel and other hermetic build systems. When set, pending snapshots are written to a separate directory while keeping the source tree read-only. We are very open to feedback on this feature. #852
  • Fix documentation for test.runner_fallback config key. #853

Install cargo-insta 1.46.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.46.0/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.46.0/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.46.0

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksu...

Description has been truncated

Bumps the deps group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [alloy-primitives](https://github.com/alloy-rs/core) | `1.4.1` | `1.5.2` |
| [alloy-sol-types](https://github.com/alloy-rs/core) | `1.4.1` | `1.5.2` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.98` | `1.0.100` |
| [askama](https://github.com/askama-rs/askama) | `0.14.0` | `0.15.1` |
| [clap](https://github.com/clap-rs/clap) | `4.5.40` | `4.5.54` |
| [convert_case](https://github.com/rutrum/convert-case) | `0.7.1` | `0.10.0` |
| [genco](https://github.com/udoprog/genco) | `0.17.10` | `0.19.0` |
| [handlebars](https://github.com/sunng87/handlebars-rust) | `4.5.0` | `6.4.0` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.15.4` | `0.16.1` |
| [insta](https://github.com/mitsuhiko/insta) | `1.44.1` | `1.46.0` |
| [lalrpop](https://github.com/lalrpop/lalrpop) | `0.20.2` | `0.22.2` |
| [lalrpop-util](https://github.com/lalrpop/lalrpop) | `0.20.2` | `0.22.2` |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.29` |
| [logos](https://github.com/maciejhirsz/logos) | `0.13.0` | `0.16.0` |
| [mockall](https://github.com/asomers/mockall) | `0.12.1` | `0.14.0` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.34` | `0.2.37` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.103` | `1.0.105` |
| [rustdoc-types](https://github.com/rust-lang/rustdoc-types) | `0.56.0` | `0.57.0` |
| [quote](https://github.com/dtolnay/quote) | `1.0.40` | `1.0.43` |
| [spin](https://github.com/mvdnes/spin-rs) | `0.9.8` | `0.10.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.111` | `2.0.114` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `2.0.17` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.24` | `0.23.5` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.48.0` | `1.49.0` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.17` | `0.1.18` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.105` | `1.0.114` |


Updates `alloy-primitives` from 1.4.1 to 1.5.2
- [Release notes](https://github.com/alloy-rs/core/releases)
- [Changelog](https://github.com/alloy-rs/core/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/core@v1.4.1...v1.5.2)

Updates `alloy-sol-types` from 1.4.1 to 1.5.2
- [Release notes](https://github.com/alloy-rs/core/releases)
- [Changelog](https://github.com/alloy-rs/core/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/core@v1.4.1...v1.5.2)

Updates `anyhow` from 1.0.98 to 1.0.100
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.98...1.0.100)

Updates `askama` from 0.14.0 to 0.15.1
- [Release notes](https://github.com/askama-rs/askama/releases)
- [Commits](askama-rs/askama@v0.14.0...v0.15.1)

Updates `clap` from 4.5.40 to 4.5.54
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.40...clap_complete-v4.5.54)

Updates `convert_case` from 0.7.1 to 0.10.0
- [Commits](https://github.com/rutrum/convert-case/commits)

Updates `genco` from 0.17.10 to 0.19.0
- [Release notes](https://github.com/udoprog/genco/releases)
- [Changelog](https://github.com/udoprog/genco/blob/main/CHANGELOG.md)
- [Commits](udoprog/genco@0.17.10...0.19.0)

Updates `handlebars` from 4.5.0 to 6.4.0
- [Release notes](https://github.com/sunng87/handlebars-rust/releases)
- [Changelog](https://github.com/sunng87/handlebars-rust/blob/master/CHANGELOG.md)
- [Commits](sunng87/handlebars-rust@v4.5.0...v6.4.0)

Updates `hashbrown` from 0.15.4 to 0.16.1
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.15.4...v0.16.1)

Updates `insta` from 1.44.1 to 1.46.0
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.44.1...1.46.0)

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

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

Updates `log` from 0.4.27 to 0.4.29
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.27...0.4.29)

Updates `logos` from 0.13.0 to 0.16.0
- [Release notes](https://github.com/maciejhirsz/logos/releases)
- [Changelog](https://github.com/maciejhirsz/logos/blob/master/RELEASE-PROCESS.md)
- [Commits](maciejhirsz/logos@v0.13...v0.16)

Updates `mockall` from 0.12.1 to 0.14.0
- [Changelog](https://github.com/asomers/mockall/blob/master/CHANGELOG.md)
- [Commits](asomers/mockall@v0.12.1...v0.14.0)

Updates `prettyplease` from 0.2.34 to 0.2.37
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.34...0.2.37)

Updates `proc-macro2` from 1.0.103 to 1.0.105
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.103...1.0.105)

Updates `rustdoc-types` from 0.56.0 to 0.57.0
- [Changelog](https://github.com/rust-lang/rustdoc-types/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/rustdoc-types/commits)

Updates `quote` from 1.0.40 to 1.0.43
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.40...1.0.43)

Updates `spin` from 0.9.8 to 0.10.0
- [Changelog](https://github.com/zesterer/spin-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mvdnes/spin-rs/commits)

Updates `syn` from 2.0.111 to 2.0.114
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.111...2.0.114)

Updates `thiserror` from 2.0.12 to 2.0.17
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.12...2.0.17)

Updates `toml_edit` from 0.22.24 to 0.23.5
- [Commits](toml-rs/toml@v0.22.24...v0.23.5)

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

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

Updates `trybuild` from 1.0.105 to 1.0.114
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.105...1.0.114)

---
updated-dependencies:
- dependency-name: alloy-primitives
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: alloy-sol-types
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: askama
  dependency-version: 0.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: clap
  dependency-version: 4.5.54
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: convert_case
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: genco
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: handlebars
  dependency-version: 6.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: hashbrown
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: insta
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: lalrpop
  dependency-version: 0.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: lalrpop-util
  dependency-version: 0.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: log
  dependency-version: 0.4.29
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: logos
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: mockall
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: prettyplease
  dependency-version: 0.2.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: proc-macro2
  dependency-version: 1.0.105
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustdoc-types
  dependency-version: 0.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: quote
  dependency-version: 1.0.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: spin
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: syn
  dependency-version: 2.0.114
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: thiserror
  dependency-version: 2.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: toml_edit
  dependency-version: 0.23.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: tokio
  dependency-version: 1.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: tokio-stream
  dependency-version: 0.1.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: trybuild
  dependency-version: 1.0.114
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 11, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 22, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/deps-97ea1aa72d branch January 22, 2026 10:46
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.

2 participants