Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 26, 2025

Bumps the all-cargo-version-updates group with 9 updates in the / directory:

Package From To
anyhow 1.0.83 1.0.100
heck 0.4.1 0.5.0
typed-builder 0.18.2 0.23.2
defmt 0.3.8 1.0.1
clap 4.5.4 4.5.53
approx 0.4.0 0.5.1
arbitrary 1.3.2 1.4.2
cc 1.0.97 1.2.47
bindgen 0.69.4 0.72.1

Updates anyhow from 1.0.83 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)

1.0.98

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements

1.0.95

1.0.94

  • Documentation improvements

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)
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 heck from 0.4.1 to 0.5.0

Changelog

Sourced from heck's changelog.

0.5.0

  • Add no_std support.
  • Remove non-additive unicode feature. The library now uses char::is_alphanumeric instead of the unicode-segmentation library to determine word boundaries in all cases.
Commits

Updates typed-builder from 0.18.2 to 0.23.2

Release notes

Sourced from typed-builder's releases.

0.23.2 - 2025-11-19

Fixed

  • Clippy warnings for using &Option<&T> instead of Option<&T>.

0.23.1 - 2025-11-16

Fixed

  • Clippy warnings for unused variables in the new default implementation.

0.23.0 - 2025-10-20

Changed

  • Upgrae Rust edition to 2024.
  • [BREAKING] When default is an expression that uses previous fields, it'll receive them as reference.

Added

  • default_where option to add generic bounds on default.
  • builder_type(attributes(...)) for adding attributes to the builder type (mainly for derive)

Removed

  • [BREAKING] The Optional trait. This is an internal implementation detail, but some users may have relied on it for customized flows.

0.22.0 - 2025-09-08

Added

  • New optional alternate transform syntax using a full fn, to allow support for custom lifetimes, generics and a where clause to custom builder method.

Example:

#[derive(TypedBuilder)]
struct Foo {
    #[builder(
        setter(
            fn transform<'a, M>(value: impl IntoValue<'a, String, M>) -> String
            where
              M: std::fmt::Display
            {
                value.into_value()
            },
        )
    )]
    s: String,
}

0.21.2 - 2025-08-21

Fixed

  • Recognize TypeGroup when checking for Option.

0.21.1 - 2025-08-12

... (truncated)

Changelog

Sourced from typed-builder's changelog.

0.23.2 - 2025-11-19

Fixed

  • Clippy warnings for using &Option<&T> instead of Option<&T>.

0.23.1 - 2025-11-16

Fixed

  • Clippy warnings for unused variables in the new default implementation.

0.23.0 - 2025-10-20

Changed

  • Upgrae Rust edition to 2024.
  • [BREAKING] When default is an expression that uses previous fields, it'll receive them as reference.

Added

  • default_where option to add generic bounds on default.
  • builder_type(attributes(...)) for adding attributes to the builder type (mainly for derive)

Removed

  • [BREAKING] The Optional trait. This is an internal implementation detail, but some users may have relied on it for customized flows.

0.22.0 - 2025-09-08

Added

  • New optional alternate transform syntax using a full fn, to allow support for custom lifetimes, generics and a where clause to custom builder method.

Example:

#[derive(TypedBuilder)]
struct Foo {
    #[builder(
        setter(
            fn transform<'a, M>(value: impl IntoValue<'a, String, M>) -> String
            where
              M: std::fmt::Display
            {
                value.into_value()
            },
        )
    )]
    s: String,
}

0.21.2 - 2025-08-21

Fixed

  • Recognize TypeGroup when checking for Option.

0.21.1 - 2025-08-12

... (truncated)

Commits
  • 72f5653 Bump bugfix version
  • d0ede8f fix #174: Fix clippy warnings for using &Option\<&T> instead of Option\<&T>
  • fdbce55 Bump bugfix version
  • 498df37 Merge pull request #173 from fMeow/fix/unused-variable
  • 9293530 fix: clippy warnings for unused variables in the new default implementation
  • 4afb4f3 Bump version
  • 7907b96 Upgrade Rust edition to 2024
  • 71a46b7 Upgrade Rust version in the CI
  • c49f34e Close #144 - add attributes to builder_type subsection
  • a211331 Close #51: Add the default_where option
  • Additional commits viewable in compare view

Updates defmt from 0.3.8 to 1.0.1

Release notes

Sourced from defmt's releases.

defmt-v1.0.0

What's Changed

Full Changelog: knurling-rs/defmt@defmt-v0.3.10...defmt-v1.0.1

defmt-v0.3.10

What's Changed

Full Changelog: knurling-rs/defmt@defmt-v0.3.9...defmt-v0.3.10

defmt-v0.3.9

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from defmt's changelog.

[defmt-v1.0.1] (2025-04-01)

  • #954 Fix accidental breaking change in Format macro

[defmt-v1.0.0] (2025-04-01)

  • #909 First 1.0 stable release 🎉
  • #940 defmt-print: Allow reading from a serial port
  • #938 Emit option_env!("DEFMT_LOG") so rustc depinfo can track it
  • #935 Add note in book's setup chapter to clarify staticlib setup
  • #914 Add cargo-deny as a CI action to check crate security and licensing

[defmt-v0.3.100] (2025-04-01)

  • #909 Re-exports defmt-1.0.0

[defmt-v0.3.10] (2024-11-29)

  • #902 Minor change to Format impl for core::panic::PanicInfo, eliding a lifetime specifier to satisfy Clippy 1.83.
  • #899 Pin the defmt-macro crate to avoid incompatible versions being used together

[defmt-v0.3.9] (2024-11-27)

  • #889 Add script for book hosting
  • #887 Fix interning example in the book
  • #884 Upgrade dependencies: notify is now at v7, thiserror is now at v2
  • #883 Mark decoder and parser not as unstable anymore
  • #880 Merge function calls emitted by the macro to save space.
  • #874 defmt: Fix doc test
  • #872 defmt: Add expect! as alias for unwrap! for discoverability
  • #871 Set MSRV to Rust 1.76
  • #869 macros: Add missing type hints
  • #865 defmt: Replace proc-macro-error with proc-macro-error2
  • #858 defmt: Implement "passthrough" trait impls for *2Format wrappers
  • #857 Add an octal display hint (:o)
  • #856 defmt: Add a Format impl for PanicInfo and related types.
  • #852 CI: Update mdbook to v0.4.40
  • #848 decoder: add optional one-line format
  • #847 decoder: Fix log format width specifier not working as expected
  • #845 decoder: fix println!() records being printed with formatting
  • #843 defmt: Sort IDs of log msgs by severity to allow runtime filtering by severity
  • #822 CI: Run cargo semver-checks on every PR
Commits
  • aad3615 Merge pull request #954 from knurling-rs/veykril/push-mtmoqvylqpuw
  • 8459657 Fix accidental breaking change in Format macro
  • 48c82e1 Merge pull request #909 from knurling-rs/defmt-1.0
  • f6decae Bump defmt-semihosting to 0.3.0
  • 4a8cdb4 Build defmt-semihosting docs for the thumbv7em-none-eabihf target
  • 6184051 Specify target for firmware semver checks action
  • c452280 Give CI jobs better names
  • 42d3b14 Normalize changelog next version entries
  • 10e0d60 Drop the rc.1 suffix.
  • afe13a9 Add missing README
  • Additional commits viewable in compare view

Updates clap from 4.5.4 to 4.5.53

Release notes

Sourced from clap's releases.

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 ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

... (truncated)

Changelog

Sourced from clap's changelog.

[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
Commits
  • 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
  • 1036060 Merge pull request #6025 from AldaronLau/typos-in-faq
  • 2fcafc0 docs: Fix minor grammar issues in FAQ
  • a380b65 Merge pull request #6023 from epage/template
  • 4d7ab14 chore: Update from _rust/main template
  • b8a7ea4 chore(deps): Update Rust Stable to v1.87 (#18)
  • f9842b3 chore: Avoid MSRV problems out of the box
  • Additional commits viewable in compare view

Updates approx from 0.4.0 to 0.5.1

Commits
  • 13fcbc7 Release v0.5.1
  • 126e7de Merge pull request #74 from EFanZh/fixes-issues-71-and-73
  • 0c1d7e5 Merge pull request #76 from brendanzab/ci
  • 8919ccd CI: add Xargo.toml file
  • 79431f1 Fix warnings
  • 0d3a22a CI: fix workflow name
  • fcafa96 CI: add build targetting Rust 1.31.0
  • 6e43a5f Merge branch 'master' into fixes-issues-71-and-73
  • 6a58678 Add CI based on Github Actions
  • ee07aef Merge pull request #63 from ilya-bobyr/master
  • Additional commits viewable in compare view

Updates arbitrary from 1.3.2 to 1.4.2

Changelog

Sourced from arbitrary's changelog.

1.4.2

Released 2025-08-13.

Added

  • Added formal MSRV policy: "We reserve the right to increment the MSRV on minor releases, however we will strive to only do it deliberately and for good reasons." The current MSRV is 1.63.0.
  • Added an Arbitrary implementation for core::cmp::Reverse.

Changed

  • Landed a handful of changes to the code generated by #[derive(Arbitrary)] that speed up compilation.

Fixed

  • Better documented bias and behavior when running out of entropy, fixed some outdated and incorrect docs related to this.

1.4.1

Released 2024-11-05.


1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

  • Make derive(Arbitrary) work for local definitions of struct Option.

... (truncated)

Commits
  • dc22fde Merge pull request #230 from fitzgen/bump-to-1.4.2
  • 2032403 Bump to version 1.4.2
  • 688b494 Merge pull request #229 from nnethercote/with_recursive_count
  • 40fe82d Shrink derived code size with with_recursive_count.
  • 3fbc2d7 Merge pull request #228 from nnethercote/fieldless-enums-no-recursion
  • 88bb8e2 Avoid recursive count guard for fieldless enums.
  • 95cc16a Use size_hint for enum discriminants.
  • 698d491 Use TokenStream instead of impl quote::ToTokens.
  • 9029685 Merge pull request #227 from nnethercote/const-recursive_count
  • 27241c6 Mark RECURSIVE_COUNT_* as const.
  • Additional commits viewable in compare view

Updates cc from 1.0.97 to 1.2.47

Release notes

Sourced from cc's releases.

cc-v1.2.47

Other

  • add helenos linker identifications (#1615)

cc-v1.2.46

Other

  • Add Visual Studio 2026 support (#1609)

cc-v1.2.45

Other

  • Regenerate target info (#1606)
  • Use a default check for the "env" variable in apple_sdk_name (#1605)

cc-v1.2.44

Other

  • Fix debug assertion for env/abi mismatch (#1604)
  • Update CHANGELOG for version 1.2.43 (#1602)
  • Stop passing an invalid target to llvm-mingw's cross-compilation wrappers (#1495)

cc-v1.2.43

Other

  • Mark static_flag and shared_flag as deprecated (#1582)

cc-v1.2.42

Other

  • Fix check-semver-checks (#1600)
  • minor improvement for docs (#1598)
  • Fix linker-plugin-lto: use -flto=thin (#1594)
  • Disable check-buildstd for armv7k-apple-watchos (#1599)
  • Add elf abi to ppc64 targets (#1596)

cc-v1.2.41

Other

  • Allow using VCToolsVersion to request a specific msvc version (#1589)
  • Regenerate target info (#1592)
  • Regenerate windows sys bindings (#1591)
  • Update windows-bindgen requirement from 0.64 to 0.65 (#1590)
  • Fix get_base_archiver_variant for clang-cl: use --print-search-dirs (#1587)

cc-v1.2.40

Other

  • Reorder changelog and remove duplicate Unreleased section (#1579)

... (truncated)

Changelog

Sourced from cc's changelog.

1.2.47 - 2025-11-21

Other

  • add helenos linker identifications (#1615)

1.2.46 - 2025-11-14

Other

  • Add Visual Studio 2026 support (#1609)

1.2.45 - 2025-11-07

Other

  • Regenerate target info (#1606)
  • Use a default check for the "env" variable in apple_sdk_name (#1605)

1.2.44 - 2025-10-31

Other

  • Fix debug assertion for env/abi mismatch (#1604)
  • Update CHANGELOG for version 1.2.43 (#1602)
  • Stop passing an invalid target to llvm-mingw's cross-compilation wrappers (#1495)

1.2.43 - 2025-10-24

Other

  • Mark static_flag and shared_flag as deprecated (#1582)

1.2.42 - 2025-10-24

Other

  • Fix check-semver-checks (#1600)
  • minor improvement for docs (#1598)
  • Fix linker-plugin-lto: use -flto=thin (#1594)
  • Disable check-buildstd for armv7k-apple-watchos (#1599)
  • Add elf abi to ppc64 targets (#1596)

1.2.41 - 2025-10-10

Other

  • Allow using VCToolsVersion to request a specific msvc version (#1589)
  • Regenerate target info (#1592)
  • Regenerate windows sys bindings (#1591)

... (truncated)

Commits

Updates bindgen from 0.69.4 to 0.72.1

Release notes

Sourced from bindgen's releases.

v0.72.1

This is just 0.72.0 with a fix for a breaking change in clang (see #3264 and related).

Full Changelog: rust-lang/rust-bindgen@v0.72.0...v0.72.1

v0.72.0

Added

  • Report enums in ParseCallbacks.
  • Refactor item_name method to use ItemInfo struct.
  • Add callback to modify contents of macro
  • Discovery callbacks for functions and methods.
  • Options to generate uncallable C++ functions.
  • Provide option to get real virtual fn receiver.

Changed

  • Generate bindings compatible with current rustc version by default.

Removed

  • Remove unused which-rustfmt feature
  • Remove warning for opaque forward declarations

Fixed

  • More sophisticated handling of the triple in rust_to_clang_target
  • Rename *-apple-ios-sim to ...simulator
  • Fix OpenCL vectors that use "ext_vector_type".
  • Fix union layout when it contains 0 sized array.
  • Avoid crashing on variadic unions without layout information.
  • Distinguish char16_t.
  • Fix bugs in --clang-macro-fallback
  • Add missed unsafe in the raw_set_bit function
  • Use link_name for dynamic library loading
  • Add "gen" to list of rust keywords in 'rust_mangle'
  • Use appropriate rustfmt --format ... param

Full Changelog: rust-lang/rust-bindgen@v0.71.1...v0.72.0

v0.71.1

We are happy to announce a new release of bindgen 🎉

  • [GitHub]
  • [crates.io]
  • [Users Guide][guide]
  • [API Documentation][docs]

Changelog

Fixed

... (truncated)

Changelog

Sourced from bindgen's changelog.

0.72.1 (2025-08-31)

Added

Changed

Removed

Fixed

  • Fixed a bad interaction with upcoming clang 22 (#3278).

Security

0.72.0 (2025-06-08)

Added

  • Report enums in ParseCallbacks.
  • Refactor item_name method to use ItemInfo struct.
  • Add callback to modify contents of macro
  • Discovery callbacks for functions and methods.
  • Options to generate uncallable C++ functions.
  • Provide option to get real virtual fn receiver.

Changed

  • Generate bindings compatible with current rustc version by default.

Removed

  • Remove unused which-rustfmt feature
  • Remove warning for opaque forward declarations

Fixed

  • More sophisticated handling of the triple in rust_to_clang_target
  • Rename *-apple-ios-sim to ...simulator
  • Fix OpenCL vectors that use "ext_vector_type".
  • Fix union layout when it contains 0 sized array.
  • Avoid crashing on variadic unions without layout information.
  • Distinguish char16_t.
  • Fix bugs in --clang-macro-fallback
  • Add missed unsafe in the raw_set_bit function
  • Use link_name for dynamic library loading
  • Add "gen" to list of rust keywords in 'rust_mangle'
  • Use appropriate rustfmt --format ... param

v0.71.1 (2024-12-09)

Fixed

  • Fix --version and --generate-shell-completions (#3040)

0.71.0 (2024-12-06)

Added

  • Add the ParseCallbacks::new_item_found callback to expose the original and final name of structs, unions and enums (#2658).
  • Add the field_type_name field to FieldInfo to expose the name of the type of a field (#2863)

... (truncated)

Commits
  • d874de8 chore: Release
  • 173a6e6 Update changelog.
  • 2e06749 clang: Push the fix for #3277 into Type::declaration.
  • 58a8710 Get the type's definition in CompInfo::from_ty
  • d0e7d6b chore: Release
  • e7f0b9d Update changelog.
  • 2882af2 Refactor item_name method to use ItemInfo struct
  • e2940cd chore: Fix some warnings with latest stable.
  • 5d7f684 codegen: Avoid crashing on variadic unions without layout information.
  • 2613129 Remove unused which-rustfmt feature
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 all-cargo-version-updates group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.83` | `1.0.100` |
| [heck](https://github.com/withoutboats/heck) | `0.4.1` | `0.5.0` |
| [typed-builder](https://github.com/idanarye/rust-typed-builder) | `0.18.2` | `0.23.2` |
| [defmt](https://github.com/knurling-rs/defmt) | `0.3.8` | `1.0.1` |
| [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.53` |
| [approx](https://github.com/brendanzab/approx) | `0.4.0` | `0.5.1` |
| [arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.97` | `1.2.47` |
| [bindgen](https://github.com/rust-lang/rust-bindgen) | `0.69.4` | `0.72.1` |



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

Updates `heck` from 0.4.1 to 0.5.0
- [Changelog](https://github.com/withoutboats/heck/blob/master/CHANGELOG.md)
- [Commits](https://github.com/withoutboats/heck/commits)

Updates `typed-builder` from 0.18.2 to 0.23.2
- [Release notes](https://github.com/idanarye/rust-typed-builder/releases)
- [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md)
- [Commits](idanarye/rust-typed-builder@v0.18.2...v0.23.2)

Updates `defmt` from 0.3.8 to 1.0.1
- [Release notes](https://github.com/knurling-rs/defmt/releases)
- [Changelog](https://github.com/knurling-rs/defmt/blob/main/CHANGELOG.md)
- [Commits](knurling-rs/defmt@defmt-v0.3.8...defmt-v1.0.1)

Updates `clap` from 4.5.4 to 4.5.53
- [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.4...clap_complete-v4.5.53)

Updates `approx` from 0.4.0 to 0.5.1
- [Commits](brendanzab/approx@v0.4.0...v0.5.1)

Updates `arbitrary` from 1.3.2 to 1.4.2
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.2)

Updates `cc` from 1.0.97 to 1.2.47
- [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@1.0.97...cc-v1.2.47)

Updates `bindgen` from 0.69.4 to 0.72.1
- [Release notes](https://github.com/rust-lang/rust-bindgen/releases)
- [Changelog](https://github.com/rust-lang/rust-bindgen/blob/v0.72.1/CHANGELOG.md)
- [Commits](rust-lang/rust-bindgen@v0.69.4...v0.72.1)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.100
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: heck
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: typed-builder
  dependency-version: 0.23.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: defmt
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-cargo-version-updates
- dependency-name: clap
  dependency-version: 4.5.53
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-cargo-version-updates
- dependency-name: approx
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: arbitrary
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: cc
  dependency-version: 1.2.47
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
- dependency-name: bindgen
  dependency-version: 0.72.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-cargo-version-updates
...

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 Nov 26, 2025
@nyurik nyurik merged commit 356f1c8 into main Nov 26, 2025
5 checks passed
@nyurik nyurik deleted the dependabot/cargo/all-cargo-version-updates-5dc91de85d branch November 26, 2025 21:02
@nyurik nyurik mentioned this pull request Jan 20, 2026
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