Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump the cargo-dependencies group with 5 updates #72

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the cargo-dependencies group with 5 updates:

Package From To
bytemuck 1.19.0 1.20.0
cxx 1.0.130 1.0.131
cxx-build 1.0.130 1.0.131
syn 2.0.87 2.0.89
proc-macro2 1.0.89 1.0.92

Updates bytemuck from 1.19.0 to 1.20.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.20

  • New functions to allocate zeroed Arc and Rc. Requires Rust 1.82
  • TransparentWrapper impls for core::cmp::Reverse and core::num::Saturating.
  • internal: Simplified the library's fill_zeroes calls to write_bytes

1.19

  • Adds the #[track_caller] attribute to functions which may panic.

1.18

  • Adds the latest_stable_rust cargo feature, which is a blanket feature that turns all other features on that are both sound and compatible with Stable rust.

1.17.1

  • Adds #[repr(C)] to the union Transmute<A, B> type that's used internally for most of the transmutations.

1.17.0

  • Makes the must_cast versions of the by-value and by-ref casts be const. The mut ref cast is unaffected for now (mut references aren't yet stable in const fn). This increases the MSRV of using that particular feature from 1.57 to 1.64.

1.16.3

  • Fully described in Lokathor/bytemuck#256, This makes casting slices to/from ZST elements more consistent between the crate's core module and other modules.

1.16.2

  • Fixes potential UB where BoxBytes could attempt to free a dangling pointer if the Layout is zero sized. This type was introduced in 1.14.1, so that version and the others up to and including 1.16.1 are now yanked for safety.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.

1.16.0

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root. This is just like the Zeroable::zeroed method, but as a const fn.

... (truncated)

Commits
  • 9bf993b chore: Release bytemuck version 1.20.0
  • 0a995ff changelog
  • 1400815 Improve fill_zeroes' use of ptr::write_bytes (#284)
  • 13f4ae0 Add functions to allocate zeroed Arc and Rc (#283)
  • af8d110 More TransparentWrapper impls (core::cmp::Reverse and `core::num::Saturat...
  • 79a15d0 Remove incorrect spanned quote usage (#279)
  • See full diff in compare view

Updates cxx from 1.0.130 to 1.0.131

Release notes

Sourced from cxx's releases.

1.0.131

  • Implement std::io::Write for cxx::UniquePtr with a forwarding impl (#1405, thanks @​anforowicz)
Commits
  • 3c5cf5c Release 1.0.131
  • 89a0417 Touch up PR 1405
  • 0fc0797 Merge pull request #1405 from anforowicz/write-trait-blanket-impl-for-unique-ptr
  • a2fe88c impl\<T> Write for UniquePtr\<T> where ... Pin\<&a mut T> : Write.
  • 547a0ed Merge pull request #1401 from dtolnay/foldhash
  • cf9f18a Add foldhash dependency to buck build
  • ac9f6ff Add foldhash dependency to bazel build
  • cb0467c Add foldhash crate to third-party deps
  • 3e414bd Switch C++ std::hash<T> implementations to foldhash
  • b353d5e Raise required compiler to rust 1.73
  • Additional commits viewable in compare view

Updates cxx-build from 1.0.130 to 1.0.131

Release notes

Sourced from cxx-build's releases.

1.0.131

  • Implement std::io::Write for cxx::UniquePtr with a forwarding impl (#1405, thanks @​anforowicz)
Commits
  • 3c5cf5c Release 1.0.131
  • 89a0417 Touch up PR 1405
  • 0fc0797 Merge pull request #1405 from anforowicz/write-trait-blanket-impl-for-unique-ptr
  • a2fe88c impl\<T> Write for UniquePtr\<T> where ... Pin\<&a mut T> : Write.
  • 547a0ed Merge pull request #1401 from dtolnay/foldhash
  • cf9f18a Add foldhash dependency to buck build
  • ac9f6ff Add foldhash dependency to bazel build
  • cb0467c Add foldhash crate to third-party deps
  • 3e414bd Switch C++ std::hash<T> implementations to foldhash
  • b353d5e Raise required compiler to rust 1.73
  • Additional commits viewable in compare view

Updates syn from 2.0.87 to 2.0.89

Release notes

Sourced from syn's releases.

2.0.89

2.0.88

  • Improve error recovery in parse_str (#1783)
Commits
  • 06af36b Release 2.0.89
  • 42b4747 Fix "compiler/fallback mismatch 949" panic
  • 424e484 Release 2.0.88
  • 2375d9a Pull in proc-macro2 FromStr's more robust error recovery
  • f46a6f3 Update test suite to nightly-2024-11-18
  • fc133eb Resolve unnecessary_map_or clippy lint
  • 0ccac34 Resolve question_mark clippy lint
  • 5c1c057 Disable toml "display" feature
  • 5bbe46a Prevent upload-artifact step from causing CI failure
  • 2b45e93 Raise minimum version for syn-codegen crate to Rust 1.65
  • See full diff in compare view

Updates proc-macro2 from 1.0.89 to 1.0.92

Release notes

Sourced from proc-macro2's releases.

1.0.92

  • Improve compiler/fallback mismatch panic message (#487)

1.0.91

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#484)

1.0.90

  • Improve error recovery in TokenStream's and Literal's FromStr implementations to work around rust-lang/rust#58736 such that rustc does not poison compilation on codepaths that should be recoverable errors (#477, #478, #479, #480, #481, #482)
Commits
  • acc7d36 Release 1.0.92
  • 0cb443d Merge pull request #487 from dtolnay/mismatchline
  • ae478ed Change mismatch panic message to avoid github linkifying
  • 5046761 Release 1.0.91
  • 27c5494 Merge pull request #486 from dtolnay/compilerlex
  • a9146d6 Ensure that compiler tokenstream parsing only produces a compiler lexerror
  • 1ce5f04 Merge pull request #485 from dtolnay/fallbackident
  • 75d0818 Make parser's fallback Ident symmetric with Group and Literal
  • 56c3e31 Merge pull request #484 from dtolnay/fbliteral
  • d2c0e61 Fix spanned fallback literal construction
  • 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

Bumps the cargo-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.19.0` | `1.20.0` |
| [cxx](https://github.com/dtolnay/cxx) | `1.0.130` | `1.0.131` |
| [cxx-build](https://github.com/dtolnay/cxx) | `1.0.130` | `1.0.131` |
| [syn](https://github.com/dtolnay/syn) | `2.0.87` | `2.0.89` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.89` | `1.0.92` |


Updates `bytemuck` from 1.19.0 to 1.20.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.19.0...v1.20.0)

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

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

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

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

---
updated-dependencies:
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: cxx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: cxx-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 2, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 2, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-dependencies-0a2d759abe branch December 2, 2024 19:59
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants