Skip to content

Bump the rust-patch-updates group across 1 directory with 4 updates#135

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/executorch-sys/rust-patch-updates-d100ce19a4
Open

Bump the rust-patch-updates group across 1 directory with 4 updates#135
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/executorch-sys/rust-patch-updates-d100ce19a4

Conversation

@dependabot
Copy link
Contributor

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

Bumps the rust-patch-updates group with 4 updates in the /executorch-sys directory: link-cplusplus, cxx, cc and cxx-build.

Updates link-cplusplus from 1.0.11 to 1.0.12

Release notes

Sourced from link-cplusplus's releases.

1.0.12

  • Documentation improvements
Commits

Updates cxx from 1.0.175 to 1.0.180

Release notes

Sourced from cxx's releases.

1.0.180

  • Fix "Unable to resolve type 'str'" build error in C++ signatures containing &'static str in return type (#1623)

1.0.179

  • Better support extern function signatures containing elided lifetimes (#1621)

1.0.178

  • Fix macro redefinition warning when using -DRUST_CXX_NO_EXCEPTIONS in some compilers (#1616)
  • Support #[derive(Default)] on enums (#1618)
  • Support non-repr(C) Rust types that have methods implemented by C++ (#1620)

1.0.177

  • Allow unpinned mutable reference for any Unpin type (#1610)
  • Support slice of type alias of Rust types (#1613)

1.0.176

  • Allow extern types to appear in Box and Vec (#1605)
  • Fix elided_lifetimes_in_paths warning on type aliases that have lifetimes (#1608)
Commits
  • c047ff7 Release 1.0.180
  • 22b3367 Delete unneeded codespan-reporting fixup
  • 9b39705 Revert unexpected_cfgs from expect to allow
  • 837fa68 Lockfile update
  • 776c295 Merge pull request #1623 from dtolnay/elidedstr
  • ca11dbe Fix contains_elided_lifetime for &'static str
  • 6525e17 Release 1.0.179
  • 87761ce Merge pull request #1621 from dtolnay/elision
  • 97ee444 Fix lifetime elision in return type of extern type methods
  • c5ca07e Add test of lifetime elision on type alias
  • Additional commits viewable in compare view

Updates cc from 1.2.36 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)

cc-v1.2.55

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

cc-v1.2.54

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

cc-v1.2.53

Other

  • Add missing RISC-V targets (#1657)

cc-v1.2.52

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)

cc-v1.2.51

Other

  • Regenerate target info (#1642)
  • Update Readmes (#1641)

cc-v1.2.50

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)

cc-v1.2.49

Other

  • Fix run_output to prevent infinite blocking (#1627)
  • Fix detect_family deadlock (#1626)
  • Fix link in new debug_str doc comment (#1625)

... (truncated)

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)

1.2.55 - 2026-01-30

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

1.2.54 - 2026-01-23

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

1.2.53 - 2026-01-16

Other

  • Add missing RISC-V targets (#1657)

1.2.52 - 2026-01-09

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)

1.2.51 - 2025-12-26

Other

  • Regenerate target info (#1642)
  • Update Readmes (#1641)

1.2.50 - 2025-12-19

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)

... (truncated)

Commits

Updates cxx-build from 1.0.175 to 1.0.194

Release notes

Sourced from cxx-build's releases.

1.0.194

1.0.193

1.0.192

1.0.191

  • Suppress a GCC 15 warning false-positive in generated C++ code (#1686)

1.0.190

  • Fix spacing of enum variant static assertions (#1675)

1.0.189

  • Incorporate version number into cxx-generated symbol names to enforce version parity between C++ and Rust code generators in non-Cargo builds (#1665, thanks @​anforowicz)

1.0.188

  • Support using a generated Rust file as source file for bridge (#1668, thanks @​phil-opp)

1.0.187

  • Update codespan-reporting dependency to 0.13 (#1662, #1661)

1.0.186

  • Improve lifetime-related diagnostics (#1651, #1654)
  • Consolidate associated functions into fewer impl blocks to improve rustdoc (#1652, #1655)

1.0.185

  • Support std::vector of non-move-constructible element type (#1646)

1.0.184

1.0.183

  • Fix "expected a FnOnce() closure" build error on unsafe Rust fn with no args (#1637)
  • Add derive(BitAnd, BitOr, BitXor) for enums (#1639)

1.0.182

  • Fix compiler warning when passing a rust::Fn with a generic return type such as Vec<T> from Rust to C++ (#1633)
  • Suppress warnings in generated code under GCC's missing-declarations setting (#1635)
  • Fix MSVC warning on large negative enum discriminant values (#1636)

1.0.181

  • Fix "cannot find attribute 'serde' in this scope" build error using Serde derives with #[serde(…)] on a shared struct (#1627)

1.0.180

  • Fix "Unable to resolve type 'str'" build error in C++ signatures containing &'static str in return type (#1623)

1.0.179

... (truncated)

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

Bumps the rust-patch-updates group with 4 updates in the /executorch-sys directory: [link-cplusplus](https://github.com/dtolnay/link-cplusplus), [cxx](https://github.com/dtolnay/cxx), [cc](https://github.com/rust-lang/cc-rs) and [cxx-build](https://github.com/dtolnay/cxx).


Updates `link-cplusplus` from 1.0.11 to 1.0.12
- [Release notes](https://github.com/dtolnay/link-cplusplus/releases)
- [Commits](dtolnay/link-cplusplus@1.0.11...1.0.12)

Updates `cxx` from 1.0.175 to 1.0.180
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@1.0.175...1.0.180)

Updates `cc` from 1.2.36 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.36...cc-v1.2.56)

Updates `cxx-build` from 1.0.175 to 1.0.194
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@1.0.175...1.0.194)

---
updated-dependencies:
- dependency-name: link-cplusplus
  dependency-version: 1.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-patch-updates
- dependency-name: cxx
  dependency-version: 1.0.180
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-patch-updates
- dependency-name: cc
  dependency-version: 1.2.56
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-patch-updates
- dependency-name: cxx-build
  dependency-version: 1.0.194
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-patch-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 Mar 1, 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.

0 participants