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(deps): bump the patch-updates group with 19 updates #5538

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the patch-updates group with 19 updates:

Package From To
anyhow 1.0.81 1.0.82
glam 0.25.0 0.27.0
heck 0.4.1 0.5.0
ash 0.37.3+1.3.251 0.38.0+1.3.281
gpu-descriptor 0.2.4 0.3.0
quote 1.0.35 1.0.36
syn 2.0.58 2.0.59
ab_glyph 0.2.24 0.2.25
allocator-api2 0.2.16 0.2.18
async-trait 0.1.79 0.1.80
cc 1.0.92 1.0.94
clap 4.5.0 4.5.4
clap_builder 4.5.0 4.5.2
clap_derive 4.5.0 4.5.4
combine 4.6.6 4.6.7
either 1.10.0 1.11.0
gpu-descriptor-types 0.1.2 0.2.0
jobserver 0.1.28 0.1.30
proc-macro2 1.0.79 1.0.80

Updates anyhow from 1.0.81 to 1.0.82

Release notes

Sourced from anyhow's releases.

1.0.82

  • Documentation improvements
Commits
  • 074bdea Release 1.0.82
  • 47a4fbf Merge pull request #360 from dtolnay/docensure
  • c5af1db Make ensure's doc comment apply to the cfg(not(doc)) macro too
  • bebc7a2 Revert "Temporarily disable miri on doctests"
  • f2c4db9 Update ui test suite to nightly-2024-03-31
  • 028cbee Explicitly install a Rust toolchain for cargo-outdated job
  • 7a4cac5 Merge pull request #358 from dtolnay/workspacewrapper
  • 939db01 Apply RUSTC_WORKSPACE_WRAPPER
  • 9f84a37 Temporarily disable miri on doctests
  • 45e5a58 Ignore dead code lint in test
  • Additional commits viewable in compare view

Updates glam from 0.25.0 to 0.27.0

Changelog

Sourced from glam's changelog.

[0.27.0] - 2024-03-23

Breaking changes

  • Changed implementation of vector fract method to match the Rust implementation instead of the GLSL implementation, that is self - self.trunc() instead of self - self.floor().

Added

  • Added vector fract_gl which uses the GLSL specification of fract, self - self.floor().

[0.26.0] - 2024-03-18

Breaking changes

  • Minimum Supported Rust Version bumped to 1.68.2 for impl From<bool> for {f32,f64} support.

Fixed

  • Respect precision format specifier in Display implementations. Previously it was ignored.

  • Corrected precision documentation for vector is_normalized methods and changed the internal check to use 2e-4 to better match the documented precision value of 1e-4.

Added

  • Added with_x, with_y, etc. to vector types which returns a copy of the vector with the new component value.

  • Added midpoint method to vector types that returns the point between two points.

  • Added move_towards for float vector types.

  • Added saturating add and sub methods for signed and unsigned integer vector types.

  • Added element wise sum and product methods for vector types.

  • Added element wise absolute values method for matrix types.

  • Added from_array method for boolean vector types.

  • Added normalize_or method to vector types that returns the specified value if normalization failed.

... (truncated)

Commits
  • 9f694bc Implement fract as self - self.trunc() rather than GLSL's self - self.floor()...
  • bb32f1d ci: Don't use actions-rs actions (#498)
  • 121f9b7 Prepare 0.26.0 release. (#496)
  • dd9c3ef Updated CHANGELOG.
  • 246ae4c Add with_x, with_y, etc. to vector types. (#493)
  • 30948c4 Add move_towards for vectors (#492)
  • 231a867 Update changelog.
  • 35a2f76 Respect precision format specifier in Display implementations. (#491)
  • ab85e2a Add Div and DivAssign by scalar implementations to matrix types. (#489)
  • fb8ef0f Add From BVecN and BVecNA for all vector types. (#488)
  • 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 ash from 0.37.3+1.3.251 to 0.38.0+1.3.281

Release notes

Sourced from ash's releases.

Ash-window 0.12.0: Bump raw-window-handle to 0.5.0

Changed

  • Bumped raw-window-handle to 0.5.0, now taking RawDisplayHandle and RawWindowHandle directly instead of requiring dynamic dispatch through the HasRaw{Display,Window}Handle traits (#645)

Ash-window 0.11.0: Bump raw-window-handle to 0.4.2

Changed

  • Bumped raw-window-handle to 0.4.2 (#505)

Ash-window 0.10.0: Bump ash dependency to 0.37

  • Bumped ash version to 0.37 (#600)
  • Make enumerate_required_extensions() return &[*const c_char] instead of Vec<&CStr> to match ash::vk::InstanceCreateInfo (#590)

Ash-window 0.9.1: Ash 0.34-0.36 support

Changed

Ash-window 0.9.0: Bump ash dependency to 0.35

Changed

  • Bumped ash version to 0.35

Ash-window 0.8.0: Bump ash dependency to 0.34

Changed

  • Bumped ash version to 0.34

Ash-window 0.7.0: Bump ash dependency to 0.33

Changed

  • Bumped ash version to 0.33

Ash-window 0.6.0: Bump ash dependency to 0.32

Changed

  • Bumped ash version to 0.32
Commits
  • b724b78 Release ash 0.38.0 and ash-window 0.13.0 (#897)
  • 24c3287 Add Fuchsia support (#626)
  • cd6e1ea extensions/amd/shader_info: Replace unreachable ShaderInfoResult with 3 spe...
  • 0c362c0 extensions/khr/calibrated_device: Use self.handle instead of requiring `vk:...
  • 736fa20 generator: Reintroduce Clone on high-level Instance/Device extension wr...
  • 9e36403 extensions: Always return pipeline/shaders, even on error (#828)
  • 1b24430 Outline monomorphic load functions
  • 3d84654 Rework module layout for less redundancy and cleaner isolation
  • aee0c61 extension/ext: Add missing length-rounding in cmd_set_sample_mask() assert ...
  • 71387e9 extensions/khr: Re-add erroneously removed mod acceleration_structure (#893)
  • Additional commits viewable in compare view

Updates gpu-descriptor from 0.2.4 to 0.3.0

Commits

Updates quote from 1.0.35 to 1.0.36

Release notes

Sourced from quote's releases.

1.0.36

  • Documentation improvements
Commits
  • 5d4880c Release 1.0.36
  • 1dd7ce7 Merge pull request #273 from dtolnay/doc
  • 0bc5d12 Apply doc comment to cfg(not(doc)) macros too
  • c295f5c Revert "Temporarily disable miri on doctests"
  • 435bd1b Update ui test suite to nightly-2024-03-31
  • cc3847d Explicitly install a Rust toolchain for cargo-outdated job
  • 6259d49 Temporarily disable miri on doctests
  • bdb4b59 Update ui test suite to nightly-2024-02-08
  • c2aeca9 Update ui test suite to nightly-2024-01-31
  • 376a061 Merge pull request #270 from dtolnay/bench
  • Additional commits viewable in compare view

Updates syn from 2.0.58 to 2.0.59

Release notes

Sourced from syn's releases.

2.0.59

  • Parse c"…" and cr"…" C-string literal syntax as Lit::CStr (#1502)
Commits
  • 922ea2d Release 2.0.59
  • 8db6e35 Merge pull request #1622 from dtolnay/cstr
  • ff67031 Enable rust-lang/rust test files that contain C-string literals
  • 77fb56f Add CStr literal tests
  • 6eb76ef Add Lit::CStr
  • 1212586 Merge pull request #1621 from dtolnay/edition
  • 6a78bba Raise default edition of rust-lang/rust test files to 2021
  • 82e572c Add br# suffix test
  • b1a55dc Reduce escaping in literal tests
  • ade35a6 Delete obsolete integration test
  • Additional commits viewable in compare view

Updates ab_glyph from 0.2.24 to 0.2.25

Release notes

Sourced from ab_glyph's releases.

ab-glyph-0.2.25

  • Add Font::glyph_svg_image for accessing glyph svg data.
Commits

Updates allocator-api2 from 0.2.16 to 0.2.18

Commits
  • 100147d Bump patch version
  • b0f3849 Update tests
  • d96530e Fix warning
  • 4b115a4 Bump patch version
  • c50521d Merge pull request #13 from jess-sol/main
  • 4d178c7 Add Write implementation for Vec
  • 738620d Merge pull request #11 from cloneable/fix-vec-in-zero-elements
  • 7f86d4b Fix vec![in] without elements to use correct allocator
  • 6a67e3c Merge pull request #4 from decathorpe/main
  • c0b5043 align included license files with Rust project best practices
  • See full diff in compare view

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates cc from 1.0.92 to 1.0.94

Release notes

Sourced from cc's releases.

1.0.94

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94

1.0.93

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93

Commits

Updates clap from 4.5.0 to 4.5.4

Release notes

Sourced from clap's releases.

v4.5.4

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap's changelog.

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits
  • 5e4facf chore: Release
  • 8880b0a docs: Update changelog
  • 132b5dd Merge pull request #5425 from epage/lit
  • df915fe fix(derive): Re-allow expressions for id's
  • 8eab48f refactor(derive): Make it easier to work with 'Name'
  • be73195 refactor(derive): Clarify tests
  • 024089b Merge pull request #5415 from Pi-Cla/patch-1
  • 3b35dba docs: Add mention of nushell to clap_complete README
  • 58469d1 Merge pull request #5405 from epage/docs
  • 655d829 docs(derive): Fix ToC links within tutorial chapters
  • Additional commits viewable in compare view

Updates clap_builder from 4.5.0 to 4.5.2

Release notes

Sourced from clap_builder's releases.

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap_builder's changelog.

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits
  • f65d421 chore: Release
  • 886b272 docs: Update changelog
  • 3ba4297 Merge pull request #5386 from amaanq/static-var-name
  • 2aea950 fix: Use SCREAMING_SNAKE_CASE for static variable authors
  • 690f555 Merge pull request #5382 from clap-rs/renovate/pre-commit-action-3.x
  • a2aa644 chore(deps): update compatible (dev) (#5381)
  • c233de5 chore(deps): update pre-commit/action action to v3.0.1
  • d0028d7 Merge pull request #5371 from BenWiederhake/dev-fix-link-command-trailing_var...
  • 0076cac fix(builder): Don't doc-link to undocumented item
  • 0c01b55 chore: Release
  • Additional commits viewable in compare view

Updates clap_derive from 4.5.0 to 4.5.4

Release notes

Sourced from clap_derive's releases.

v4.5.4

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

v4.5.3

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

v4.5.1

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Changelog

Sourced from clap_derive's changelog.

[4.5.4] - 2024-03-25

Fixes

  • (derive) Allow non-literal #[arg(id)] attributes again

[4.5.3] - 2024-03-15

Internal

  • (derive) Update heck

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning

[4.5.1] - 2024-02-16

Fixes

  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used
Commits
  • 5e4facf chore: Release
  • 8880b0a docs: Update changelog
  • 132b5dd Merge pull request #5425 from epage/lit
  • df915fe fix(derive): Re-allow expressions for id's
  • 8eab48f refactor(derive): Make it easier to work with 'Name'
  • be73195 refactor(derive): Clarify tests
  • 024089b Merge pull request #5415 from Pi-Cla/patch-1
  • 3b35dba docs: Add mention of nushell to clap_complete README
  • 58469d1 Merge pull request #5405 from epage/docs
  • 655d829 docs(derive): Fix ToC links within tutorial chapters
  • Additional commits viewable in compare view

Updates combine from 4.6.6 to 4.6.7

Changelog

Sourced from combine's changelog.

v4.6.7 (2024-04-10)

  • perf: avoid initializing huge buffers in the stream decoder

Commits
  • f726b8f chore: Release combine version 4.6.7
  • 06686b3 Updated changelog
  • ca74a14 Merge pull request #365 from artemrakov/perf_init_buffers
  • 5e6bbed perf: avoid initializing huge buffers
  • 6cac1bd Merge pull request #359 from hackaugusto/hacka-return-position-impl
  • 9bc45f7 docs: remove mention to nightly
  • da5b684 Merge pull request #360 from Marwes/cargo
  • a88b5eb chore: Update CI to run against rust 1.61
  • 805862b Merge pull request #353 from softmoth/rust-24159-is-fixed
  • 71ac3e5 test: Fix readme tests
  • Additional commits viewable in compare view

Updates either from 1.10.0 to 1.11.0

Commits

Updates gpu-descriptor-types from 0.1.2 to 0.2.0

Changelog

Sourced from gpu-descriptor-types's changelog.

[0.2.0]

Added

  • This CHANGELOG file.

Changed

  • Leaked sets now not get reported on panic.

[0.1.1] - 2021-02-08

Added

  • CI check for no_std

Fixed

  • Prevented second panic when cleanup check fails on unwinding.

[0.1.1] - 2021-01-30

Added

  • Initial Implementation for general purpose gpu descriptor allocator.
  • Integration with gfx-hal crate.
Commits

Updates jobserver from 0.1.28 to 0.1.30

Commits

Updates proc-macro2 from 1.0.79 to 1.0.80

Release notes

Sourced from proc-macro2's releases.

1.0.80

  • Add Literal::byte_character constructor (#449)
  • Add Literal::c_string constructor #450)
Commits
  • da51f8d Release 1.0.80
  • 392fa6c Ignore needless_pass_by_value pedantic clippy lint in test
  • 1ff5c1f Ignore needless_raw_string_hashes pedantic clippy lint in test
  • 0c9449e Import some Literal tests from libproc_macro
  • 28c87ad Add tests of negative literal construction
  • c61f5db Add some tests of cstr raw literals
  • d50dcd9 Merge pull request #450 from dtolnay/cstr
  • 70a804b Add Literal::c_string constructor
  • 45730bc Adjust Literal constructor argument names to match those in libproc_macro
  • 26d1d3f Merge pull request #449 from dtolnay/bytechar
  • 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 patch-updates group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.81` | `1.0.82` |
| [glam](https://github.com/bitshifter/glam-rs) | `0.25.0` | `0.27.0` |
| [heck](https://github.com/withoutboats/heck) | `0.4.1` | `0.5.0` |
| [ash](https://github.com/ash-rs/ash) | `0.37.3+1.3.251` | `0.38.0+1.3.281` |
| [gpu-descriptor](https://github.com/zakarumych/gpu-descriptor) | `0.2.4` | `0.3.0` |
| [quote](https://github.com/dtolnay/quote) | `1.0.35` | `1.0.36` |
| [syn](https://github.com/dtolnay/syn) | `2.0.58` | `2.0.59` |
| [ab_glyph](https://github.com/alexheretic/ab-glyph) | `0.2.24` | `0.2.25` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.16` | `0.2.18` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.92` | `1.0.94` |
| [clap](https://github.com/clap-rs/clap) | `4.5.0` | `4.5.4` |
| [clap_builder](https://github.com/clap-rs/clap) | `4.5.0` | `4.5.2` |
| [clap_derive](https://github.com/clap-rs/clap) | `4.5.0` | `4.5.4` |
| [combine](https://github.com/Marwes/combine) | `4.6.6` | `4.6.7` |
| [either](https://github.com/rayon-rs/either) | `1.10.0` | `1.11.0` |
| [gpu-descriptor-types](https://github.com/zakarumych/gpu-descriptor) | `0.1.2` | `0.2.0` |
| [jobserver](https://github.com/rust-lang/jobserver-rs) | `0.1.28` | `0.1.30` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.79` | `1.0.80` |


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

Updates `glam` from 0.25.0 to 0.27.0
- [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md)
- [Commits](bitshifter/glam-rs@0.25.0...0.27.0)

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 `ash` from 0.37.3+1.3.251 to 0.38.0+1.3.281
- [Release notes](https://github.com/ash-rs/ash/releases)
- [Changelog](https://github.com/ash-rs/ash/blob/master/Changelog.md)
- [Commits](ash-rs/ash@0.37.3...0.38.0)

Updates `gpu-descriptor` from 0.2.4 to 0.3.0
- [Changelog](https://github.com/zakarumych/gpu-descriptor/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zakarumych/gpu-descriptor/commits)

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

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

Updates `ab_glyph` from 0.2.24 to 0.2.25
- [Release notes](https://github.com/alexheretic/ab-glyph/releases)
- [Commits](alexheretic/ab-glyph@ab-glyph-0.2.24...ab-glyph-0.2.25)

Updates `allocator-api2` from 0.2.16 to 0.2.18
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](zakarumych/allocator-api2@v0.2.16...v0.2.18)

Updates `async-trait` from 0.1.79 to 0.1.80
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.79...0.1.80)

Updates `cc` from 1.0.92 to 1.0.94
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.92...1.0.94)

Updates `clap` from 4.5.0 to 4.5.4
- [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.0...v4.5.4)

Updates `clap_builder` from 4.5.0 to 4.5.2
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.0...v4.5.2)

Updates `clap_derive` from 4.5.0 to 4.5.4
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.0...v4.5.4)

Updates `combine` from 4.6.6 to 4.6.7
- [Changelog](https://github.com/Marwes/combine/blob/master/CHANGELOG.md)
- [Commits](Marwes/combine@v4.6.6...v4.6.7)

Updates `either` from 1.10.0 to 1.11.0
- [Commits](rayon-rs/either@1.10.0...1.11.0)

Updates `gpu-descriptor-types` from 0.1.2 to 0.2.0
- [Changelog](https://github.com/zakarumych/gpu-descriptor/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zakarumych/gpu-descriptor/commits/v0.2.0)

Updates `jobserver` from 0.1.28 to 0.1.30
- [Commits](https://github.com/rust-lang/jobserver-rs/commits)

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

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: glam
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: heck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: ash
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: gpu-descriptor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ab_glyph
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: combine
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: gpu-descriptor-types
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: jobserver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner April 15, 2024 03:05
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 15, 2024
@ErichDonGubler
Copy link
Member

Same blockers in CI as last time!

@cwfitzgerald
Copy link
Member

@dependabot ignore ash major version

@dependabot ignore encase

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2024

OK, I won't notify you about version 0.x.x of ash again, unless you unignore it.

@cwfitzgerald
Copy link
Member

@dependabot ignore encase

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2024

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

@dependabot dependabot bot closed this Apr 17, 2024
@dependabot dependabot bot deleted the dependabot/cargo/patch-updates-267436e3bf branch April 17, 2024 20:34
@teoxoy
Copy link
Member

teoxoy commented Apr 24, 2024

@dependabot unignore encase

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 24, 2024

No dependency name (encase) or ignore conditions found to unignore.

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.

3 participants