Skip to content

build: bump the deps group with 13 updates#1654

Merged
claytonrcarter merged 1 commit intomasterfrom
dependabot/cargo/deps-f247ccf96f
Mar 2, 2026
Merged

build: bump the deps group with 13 updates#1654
claytonrcarter merged 1 commit intomasterfrom
dependabot/cargo/deps-f247ccf96f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the deps group with 13 updates:

Package From To
anyhow 1.0.100 1.0.102
chrono 0.4.43 0.4.44
clap 4.5.56 4.5.60
futures 0.3.31 0.3.32
indicatif 0.18.3 0.18.4
lalrpop 0.22.2 0.23.0
lalrpop-util 0.22.2 0.23.0
regex 1.12.2 1.12.3
tempfile 3.24.0 3.26.0
cc 1.2.55 1.2.56
criterion 0.8.1 0.8.2
insta 1.46.2 1.46.3
proptest 1.9.0 1.10.0

Updates anyhow from 1.0.100 to 1.0.102

Release notes

Sourced from anyhow's releases.

1.0.102

1.0.101

Commits
  • 5c657b3 Release 1.0.102
  • e737fb6 Merge pull request #442 from dtolnay/backtrace
  • 7fe62b5 Further simply backtrace conditional compilation
  • c8cb5ca Merge pull request #441 from dtolnay/backtrace
  • de27df7 Delete CI use of --features=backtrace
  • 9b67e5d Merge pull request #440 from dtolnay/backtrace
  • efdb11a Simplify std_backtrace conditional code
  • b8a9a70 Merge pull request #439 from dtolnay/backtrace
  • a42fc2c Remove feature = "backtrace" conditional code
  • 2a2a3ce Re-word backtrace feature comment
  • Additional commits viewable in compare view

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 clap from 4.5.56 to 4.5.60

Release notes

Sourced from clap's releases.

v4.5.60

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values

v4.5.59

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands

v4.5.58

[4.5.58] - 2026-02-11

v4.5.57

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)
Changelog

Sourced from clap's changelog.

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands

[4.5.58] - 2026-02-11

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)
Commits
  • 33d24d8 chore: Release
  • 9332409 docs: Update changelog
  • b7adce5 Merge pull request #6166 from fabalchemy/fix-dynamic-powershell-completion
  • 009bba4 fix(clap_complete): Improve powershell registration
  • d89d57d chore: Release
  • f18b67e docs: Update changelog
  • 9d218eb Merge pull request #6165 from epage/shirt
  • 126440c fix(help): Correctly calculate padding for short-only args
  • 9e3c05e test(help): Show panic with short, valueless arg
  • c9898d0 test(help): Verify short with value
  • Additional commits viewable in compare view

Updates futures from 0.3.31 to 0.3.32

Release notes

Sourced from futures's releases.

0.3.32

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Changelog

Sourced from futures's changelog.

0.3.32 - 2026-02-15

  • Bump MSRV of utility crates to 1.71. (#2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#2929)
  • Add FuturesOrdered::clear (#2927)
  • Add mpsc::*Receiver::recv (#2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#2944)
  • Implement FusedStream for sink::With (#2948)
  • Add no_std support for shared (#2868)
  • Make Mutex::new() const (#2956)
  • Add #[clippy::has_significant_drop] to guards (#2967)
  • Remove dependency to pin-utils (#2929)
  • Remove dependency on num_cpus (#2946)
  • Performance improvements (#2983)
  • Documentation improvements (#2925, #2926, #2940, #2971)
Commits
  • d9bba94 Release 0.3.32
  • 151e0b9 Add comments on rust-version field in Cargo.toml
  • 4aaf00c Bump MSRV of utility crates to 1.71
  • a4cce12 perf: improve AtomicWaker::wake performance (#2983)
  • ba9d102 Add #[clippy::has_significant_drop] to guards (#2967)
  • 20396a8 Fix rustdoc::broken_intra_doc_links warning
  • 815f6eb Fix documentation of BiLock::lock (#2971)
  • 0f0db04 futures-util: make Mutex::new() const (#2956)
  • 5d6fc5e ci: Test big-endian target (s390x Linux)
  • 9f739fe Ignore dead_code lint on Fn1 trait
  • Additional commits viewable in compare view

Updates indicatif from 0.18.3 to 0.18.4

Release notes

Sourced from indicatif's releases.

0.18.4

What's Changed

Commits
  • 4de2f60 Bump version to 0.18.4
  • 8e0ab0e fix: respect NO_COLOR and TERM=dumb environment variables
  • 781b2d0 Take semver-compatible dependency updates
  • 34aee07 Introduce unicode-width feature
  • 51d284f Introduce wasmbind feature
  • ee057e5 Bump tokio from 1.48.0 to 1.49.0
  • 31bcea3 Bump portable-atomic from 1.11.1 to 1.12.0
  • dbd26eb Bump console from 0.16.1 to 0.16.2
  • 7ac4a0d Expose the current tab width
  • 95088ff iter: clean up variable names, casting
  • Additional commits viewable in compare view

Updates lalrpop from 0.22.2 to 0.23.0

Changelog

Sourced from lalrpop's changelog.

0.23.0 (2026-02-12)

Breaking Changes

  • Lalrpop no longer exposes a regex-automata feature. This feature was previously exposed accidentally and did not change lalrpop functionality.
  • Make the lexer feature a default feature for lalrpop-util. In older versions of rust, lalrpop-util would automatically use the lexer feature when lalrpop did, but that is no longer the case, so this change keeps the common case as the default. If you're using a custom lexer, you'll need to make sure to disable default-features for both lalrpop and lalrpop-util.
  • Configuration.set_in_dir() can now no longer affect the output dir. In certain configurations, setting in_dir using set_in_dir() could actually cause the generated parser to be put in the input directory rather than in OUT_DIR. In most cases OUT_DIR may be what you want anyways and should work seamlessly. If you want to preserve the existing behavior of writing to the source directory, you should do that explicitly with set_out_dir() (or use_cargo_dir_conventions())
  • Configuration.set_in_dir() is now incompatible with process_current_dir(), and process_dir() , because all of these functions set an input directory themselves (either the current directory, or the argument). Previously, these functions would all silently ignore the set_in_dir() setting, except possibly to change the output directory as mentioned above. Now these functions are incompatible. If you get an error about this, remove set_in_dir() from your Configuration, or use it with process(). You may also need to change your output directory as mentioned in the previous bullet.

Features

  • lalrpop_util::ParseError now implements the Hash trait
  • Support expanding multiple anonymous format arguments in the same pattern (e.g. <A> <B> => format!("<> <>")). It is an error if the number of format strings in the pattern do not match the number in the action code.
  • Support binding tuple patterns in grammar. This syntactic sugar can make dealing with nonterminal definitions that return multiple values easier.

Changes

  • Bump MSRV to 1.85
  • Update to the 2024 rust edition

Internal Development features

  • Support running tests with cargo-nextest.
  • Support running benchmarks on both lalrpop build time and generated parsers using cargo bench

Bugfixes

  • Documentation updates
  • When using a custom lexer, the Location type previously required the Copy trait, which was undocumented and unintentional. This requirement has been dropped.
  • If looking for a .lalrpop file in a directory that no longer exists, lalrpop no longer creates the missing directory.

... (truncated)

Commits

Updates lalrpop-util from 0.22.2 to 0.23.0

Changelog

Sourced from lalrpop-util's changelog.

0.23.0 (2026-02-12)

Breaking Changes

  • Lalrpop no longer exposes a regex-automata feature. This feature was previously exposed accidentally and did not change lalrpop functionality.
  • Make the lexer feature a default feature for lalrpop-util. In older versions of rust, lalrpop-util would automatically use the lexer feature when lalrpop did, but that is no longer the case, so this change keeps the common case as the default. If you're using a custom lexer, you'll need to make sure to disable default-features for both lalrpop and lalrpop-util.
  • Configuration.set_in_dir() can now no longer affect the output dir. In certain configurations, setting in_dir using set_in_dir() could actually cause the generated parser to be put in the input directory rather than in OUT_DIR. In most cases OUT_DIR may be what you want anyways and should work seamlessly. If you want to preserve the existing behavior of writing to the source directory, you should do that explicitly with set_out_dir() (or use_cargo_dir_conventions())
  • Configuration.set_in_dir() is now incompatible with process_current_dir(), and process_dir() , because all of these functions set an input directory themselves (either the current directory, or the argument). Previously, these functions would all silently ignore the set_in_dir() setting, except possibly to change the output directory as mentioned above. Now these functions are incompatible. If you get an error about this, remove set_in_dir() from your Configuration, or use it with process(). You may also need to change your output directory as mentioned in the previous bullet.

Features

  • lalrpop_util::ParseError now implements the Hash trait
  • Support expanding multiple anonymous format arguments in the same pattern (e.g. <A> <B> => format!("<> <>")). It is an error if the number of format strings in the pattern do not match the number in the action code.
  • Support binding tuple patterns in grammar. This syntactic sugar can make dealing with nonterminal definitions that return multiple values easier.

Changes

  • Bump MSRV to 1.85
  • Update to the 2024 rust edition

Internal Development features

  • Support running tests with cargo-nextest.
  • Support running benchmarks on both lalrpop build time and generated parsers using cargo bench

Bugfixes

  • Documentation updates
  • When using a custom lexer, the Location type previously required the Copy trait, which was undocumented and unintentional. This requirement has been dropped.
  • If looking for a .lalrpop file in a directory that no longer exists, lalrpop no longer creates the missing directory.

... (truncated)

Commits

Updates regex from 1.12.2 to 1.12.3

Changelog

Sourced from regex's changelog.

1.12.3 (2025-02-03)

This release excludes some unnecessary things from the archive published to crates.io. Specifically, fuzzing data and various shell scripts are now excluded. If you run into problems, please file an issue.

Improvements:

  • #1319: Switch from a Cargo exclude list to an include list, and exclude some unnecessary stuff.
Commits
  • b028e4f 1.12.3
  • 5e195de regex-automata-0.4.14
  • a3433f6 regex-syntax-0.8.9
  • 0c07fae regex-lite-0.1.9
  • 6a81006 cargo: exclude development scripts and fuzzing data
  • 4733e28 automata: fix onepass::DFA::try_search_slots panic when too many slots are ...
  • See full diff in compare view

Updates tempfile from 3.24.0 to 3.26.0

Changelog

Sourced from tempfile's changelog.

3.26.0

3.25.0

  • Allow getrandom 0.4.x while retaining support for getrandom 0.3.x.
Commits

Updates cc from 1.2.55 to 1.2.56

Release notes

Sourced from cc's releases.

cc-v1.2.56

Other

  • Regenerate target info (#1676)
  • Fix clang-cl target when cross-compiling (#1670)
Changelog

Sourced from cc's changelog.

1.2.56 - 2026-02-13

Other

  • Regenerate target info (#1676)
  • Fix clang-cl target when cross-compiling (#1670)
Commits

Updates criterion from 0.8.1 to 0.8.2

Release notes

Sourced from criterion's releases.

criterion-plot-v0.8.2

Other

  • Update Readme

criterion-v0.8.2

Fixed

  • don't build alloca on unsupported targets

Other

  • (deps) bump crate-ci/typos from 1.40.0 to 1.43.0
  • Fix panic with uniform iteration durations in benchmarks
  • Update Readme
  • Exclude development scripts from published package
Changelog

Sourced from criterion's changelog.

0.8.2 - 2026-02-04

Fixed

  • don't build alloca on unsupported targets

Other

  • (deps) bump crate-ci/typos from 1.40.0 to 1.43.0
  • Fix panic with uniform iteration durations in benchmarks
  • Update Readme
  • Exclude development scripts from published package
Commits
  • 7f0d745 chore: release v0.8.2
  • 4a467ce chore(deps): bump crate-ci/typos from 1.40.0 to 1.43.0
  • b277a75 Fix panic with uniform iteration durations in benchmarks
  • 828af14 fix: don't build alloca on unsupported targets
  • b01316b Update Readme
  • 4c02a3b Exclude development scripts from published package
  • See full diff in compare view

Updates insta from 1.46.2 to 1.46.3

Release notes

Sourced from insta's releases.

1.46.3

Release Notes

  • Fix inline escaped snapshots incorrectly stripping leading newlines when content contains control characters like carriage returns. The escaped format (used for snapshots with control chars) now correctly preserves the original content without stripping a non-existent formatting newline. #865

Install cargo-insta 1.46.3

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.46.3/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.3/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.46.3

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 checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.46.3

  • Fix inline escaped snapshots incorrectly stripping leading newlines when content contains control characters like carriage returns. The escaped format (used for snapshots with control chars) now correctly preserves the original content without stripping a non-existent formatting newline. #865
Commits

Updates proptest from 1.9.0 to 1.10.0

Commits
  • 4814e51 Merge pull request #627 from proptest-rs/release-prep-1.10
  • 8221c9a prep 1.10 (and other) release(s)
  • 28961bf fix(macro): set Config::test_name to actual fn name (#619)
  • 8fb08ff Update trybuild requirement from =1.0.113 to =1.0.115 (#624)
  • 5b7a435 Update convert_case requirement from 0.6 to 0.11 (#623)
  • 14d95fc Merge pull request #586 from regexident/range-subset-strategy
  • 229e723 Merge pull request #622 from ssanderson/proptest-macro-fixes
  • 3663c38 Merge pull request #621 from wgyt/wgyt-patch
  • 1fe04c9 Fix import of HashMap
  • 9c644db Support returning TestCaseResult from #[property_test] tests.
  • Additional commits viewable 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 deps group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.100` | `1.0.102` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.43` | `0.4.44` |
| [clap](https://github.com/clap-rs/clap) | `4.5.56` | `4.5.60` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.31` | `0.3.32` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.18.3` | `0.18.4` |
| [lalrpop](https://github.com/lalrpop/lalrpop) | `0.22.2` | `0.23.0` |
| [lalrpop-util](https://github.com/lalrpop/lalrpop) | `0.22.2` | `0.23.0` |
| [regex](https://github.com/rust-lang/regex) | `1.12.2` | `1.12.3` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.24.0` | `3.26.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.55` | `1.2.56` |
| [criterion](https://github.com/criterion-rs/criterion.rs) | `0.8.1` | `0.8.2` |
| [insta](https://github.com/mitsuhiko/insta) | `1.46.2` | `1.46.3` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.9.0` | `1.10.0` |


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

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 `clap` from 4.5.56 to 4.5.60
- [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.56...clap_complete-v4.5.60)

Updates `futures` from 0.3.31 to 0.3.32
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.31...0.3.32)

Updates `indicatif` from 0.18.3 to 0.18.4
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.18.3...0.18.4)

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

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

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

Updates `tempfile` from 3.24.0 to 3.26.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.24.0...v3.26.0)

Updates `cc` from 1.2.55 to 1.2.56
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.55...cc-v1.2.56)

Updates `criterion` from 0.8.1 to 0.8.2
- [Release notes](https://github.com/criterion-rs/criterion.rs/releases)
- [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](criterion-rs/criterion.rs@criterion-v0.8.1...criterion-v0.8.2)

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

Updates `proptest` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.9.0...v1.10.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: chrono
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: clap
  dependency-version: 4.5.60
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: futures
  dependency-version: 0.3.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: indicatif
  dependency-version: 0.18.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: lalrpop
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: lalrpop-util
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: regex
  dependency-version: 1.12.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tempfile
  dependency-version: 3.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: cc
  dependency-version: 1.2.56
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: criterion
  dependency-version: 0.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: insta
  dependency-version: 1.46.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: proptest
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Mar 1, 2026
@claytonrcarter claytonrcarter merged commit 9a64294 into master Mar 2, 2026
13 checks passed
@claytonrcarter claytonrcarter deleted the dependabot/cargo/deps-f247ccf96f branch March 2, 2026 02:06
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.

1 participant