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

Bump the cargo group with 21 updates #2073

Merged
merged 10 commits into from
Oct 23, 2023
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 23, 2023

Bumps the cargo group with 21 updates:

Package From To
thiserror 1.0.49 1.0.50
tracing 0.1.37 0.1.40
regex 1.10.0 1.10.2
octocrab 0.31.1 0.31.2
serde 1.0.188 1.0.189
cargo_metadata 0.18.0 0.18.1
cmd_lib 1.3.0 1.5.0
ahash 0.8.3 0.8.4
async-trait 0.1.73 0.1.74
deranged 0.3.8 0.3.9
flate2 1.0.27 1.0.28
iana-time-zone 0.1.57 0.1.58
ipnet 2.8.0 2.9.0
lock_api 0.4.10 0.4.11
mio 0.8.8 0.8.9
parking_lot_core 0.9.8 0.9.9
rustix 0.38.19 0.38.20
socket2 0.4.9 0.4.10
time 0.3.29 0.3.30
wide 0.7.12 0.7.13
winnow 0.5.16 0.5.17

Updates thiserror from 1.0.49 to 1.0.50

Release notes

Sourced from thiserror's releases.

1.0.50

  • Improve diagnostic when a #[source], #[from], or #[transparant] attribute refers to a type that has no std::error::Error impl (#258, thanks @​de-vri-es)
Commits
  • a7d220d Release 1.0.50
  • 4088d16 Ignore module_name_repetitions pedantic clippy lint
  • ebebf77 Format ui tests with rustfmt
  • ff0a0a5 Source and From attributes only have single-ident path
  • 7cec716 Remove reliance on Spanned for Member
  • c9fe739 Touch up PR 258
  • 4850c6f Merge pull request #258 from de-vri-es/as-dyn-error-span
  • a49f7c6 Change span of as_dyn_error() to point compile error at attribute.
  • f4eac7e Ignore needless_raw_string_hashes clippy lint
  • See full diff in compare view

Updates tracing from 0.1.37 to 0.1.40

Release notes

Sourced from tracing's releases.

tracing 0.1.40

This release fixes a potential stack use-after-free in the Instrument::into_inner method. Only uses of this method are affected by this bug.

Fixed

  • Use mem::ManuallyDrop instead of mem::forget in Instrument::into_inner (#2765)

#2765: tokio-rs/tracing#2765

Thanks to @​cramertj and @​manishearth for finding and fixing this issue!

tracing 0.1.39

This release adds several additional features to the tracing macros. In addition, it updates the tracing-core dependency to [v0.1.32][core-0.1.32] and the tracing-attributes dependency to [v0.1.27][attrs-0.1.27].

Added

  • Allow constant field names in macros (#2617)
  • Allow setting event names in macros (#2699)
  • core: Allow ValueSets of any length (#2508)

Changed

  • tracing-attributes: updated to [0.1.27][attrs-0.1.27]
  • tracing-core: updated to [0.1.32][core-0.1.32]
  • attributes: Bump minimum version of proc-macro2 to 1.0.60 (#2732)
  • attributes: Generate less dead code for async block return type hint (#2709)

Fixed

  • Use fully qualified names in macros for items exported from std prelude (#2621, #2757)
  • attributes: Allow [clippy::let_with_type_underscore] in macro-generated code (#2609)
  • attributes: Allow unknown_lints in macro-generated code (#2626)
  • attributes: Fix a compilation error in #[instrument] when the "log" feature is enabled (#2599)

Documented

  • Add axum-insights to relevant crates. (#2713)
  • Fix link to RAI pattern crate documentation (#2612)
  • Fix docs typos and warnings (#2581)
  • Add clippy-tracing to related crates (#2628)
  • Add tracing-cloudwatch to related crates (#2667)
  • Fix deadlink to tracing-etw repo (#2602)

... (truncated)

Commits

Updates regex from 1.10.0 to 1.10.2

Changelog

Sourced from regex's changelog.

1.10.2 (2023-10-16)

This is a new patch release that fixes a search regression where incorrect matches could be reported.

Bug fixes:

1.10.1 (2023-10-14)

This is a new patch release with a minor increase in the number of valid patterns and a broadening of some literal optimizations.

New features:

  • FEATURE 04f5d7be: Loosen ASCII-compatible rules such that regexes like (?-u:☃) are now allowed.

Performance improvements:

  • PERF 8a8d599f: Broader the reverse suffix optimization to apply in more cases.
Commits
  • 5f1f1c8 1.10.2
  • 1a54a82 deps: bump regex-automata to 0.4.3
  • 61242b1 regex-automata-0.4.3
  • 50fe7d1 changelog: 1.10.2
  • eb950f6 automata/meta: revert broadening of reverse suffix optimization
  • e7bd19d regex-lite-0.1.5
  • 0086dec lite: fix stack overflow test
  • 4ae1472 tests: fix compilation of doctests on 32-bit architectures
  • cd79881 regex-lite-0.1.4
  • 466e42c lite: fix stack overflow in NFA compiler
  • Additional commits viewable in compare view

Updates octocrab from 0.31.1 to 0.31.2

Release notes

Sourced from octocrab's releases.

v0.31.2

Other

  • Add follow-redirect feature (#469)
Changelog

Sourced from octocrab's changelog.

0.31.2 - 2023-10-15

Other

  • Add follow-redirect feature (#469)
Commits

Updates serde from 1.0.188 to 1.0.189

Release notes

Sourced from serde's releases.

v1.0.189

  • Fix "cannot infer type" error when internally tagged enum contains untagged variant (#2613, thanks @​ahl)
Commits
  • e94fc65 Release 1.0.189
  • b908487 Remove double nesting of first_attempt
  • 2a7c7fa Merge pull request #2613 from ahl/fix-untagged-plus-simple
  • e302e15 Merge pull request #2625 from marcospb19/add-csv-to-the-list
  • 1cbea89 Add CSV to the formats list
  • 37a3285 Update ui test suite to nightly-2023-10-06
  • 8c4aad3 Clean up unneeded raw strings in test
  • 1774794 Resolve needless_raw_string_hashes clippy lint in test
  • 1af23f1 Test docs.rs documentation build in CI
  • 94fbc3d fix clippy
  • Additional commits viewable in compare view

Updates cargo_metadata from 0.18.0 to 0.18.1

Commits

Updates cmd_lib from 1.3.0 to 1.5.0

Commits

Updates ahash from 0.8.3 to 0.8.4

Commits

Updates async-trait from 0.1.73 to 0.1.74

Release notes

Sourced from async-trait's releases.

0.1.74

  • Documentation improvements
Commits
  • 265979b Release 0.1.74
  • 5e67709 Fix doc test when async fn in trait is natively supported
  • ef144ae Update ui test suite to nightly-2023-10-15
  • 9398a28 Test docs.rs documentation build in CI
  • 8737173 Update ui test suite to nightly-2023-09-24
  • 5ba643c Test dyn Trait containing async fn
  • 247c8e7 Add ui test testing the recommendation to use async-trait
  • 799db66 Update ui test suite to nightly-2023-09-23
  • 0e60248 Update actions/checkout@v3 -> v4
  • 7fcbc83 Update ui test suite to nightly-2023-08-29
  • See full diff in compare view

Updates deranged from 0.3.8 to 0.3.9

Commits

Updates flate2 from 1.0.27 to 1.0.28

Release notes

Sourced from flate2's releases.

1.0.28

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.27...1.0.28

Commits
  • a99b53e Merge pull request #378 from Byron/prep-release
  • 223f829 Merge pull request #380 from Manishearth/reset-stream
  • 7a61ea5 Reset StreamWrapper after calling mz_inflate / mz_deflate
  • 1260d3e prepare next patch-release
  • f62ff42 Merge pull request #375 from georeth/fix-read-doc
  • 5b23cc9 Fix and unify docs of bufread and read types.
  • f285e9a Merge pull request #373 from anforowicz/fix-spare-capacity-handling
  • 69972b8 Fix soundness of write_to_spare_capacity_of_vec.
  • 82e45fa Refactoring: Dedupe code into write_to_spare_capacity_of_vec helper.
  • 20cdcbe Merge pull request #371 from jongiddy/jgiddy/msrv-1.53
  • Additional commits viewable in compare view

Updates iana-time-zone from 0.1.57 to 0.1.58

Changelog

Sourced from iana-time-zone's changelog.

[0.1.58] - 2023-10-17

Added

  • use windows-core with embedded bindings via windows-bindgen (#117)
  • implement GNU Hurd support (#121)
  • implement AIX support (#57)
Commits

Updates ipnet from 2.8.0 to 2.9.0

Release notes

Sourced from ipnet's releases.

Add ser_as_str feature to serialize using serialize_str()

  • Add ser_as_str feature to serialize using serialize_str() #52
Changelog

Sourced from ipnet's changelog.

Version 2.9.0

  • Add ser_as_str feature to serialize using serialize_str() #52
Commits
  • ac6137c Fix * in heapless dependency not supported by crates.io
  • 585bcad Merge pull request #52 from elrafoon/ser_as_str
  • 5d21106 Increment version number
  • cd940a0 Add ser_as_str feature to serialize using serialize_str()
  • See full diff in compare view

Updates lock_api from 0.4.10 to 0.4.11

Changelog

Sourced from lock_api's changelog.

parking_lot_core 0.9.9, lock_api 0.4.11 (2023-10-18)

  • Fixed RwLockUpgradeableReadGuard::with_upgraded. (#393)
  • Fixed ReentrantMutex::bump lock count. (#390)
  • Added methods to unsafely create a lock guard out of thin air. (#403)
  • Added support for Apple tvOS. (#405)
Commits
  • 8d92826 Release lock_api 0.4.11 and parking_lot_core 0.9.9
  • 8e9b3b9 Merge pull request #348 from claui/rust-version
  • 669bf52 Merge pull request #403 from Lochlanna/public-guard-creation
  • 3f38a9e rename arc guard creation methods
  • b6eb569 Merge pull request #407 from alex/patch-1
  • aa2115f Updated redox_syscall dep
  • 8f5ccd0 small fix to doc wording on read guard methods
  • e927d19 Updated documentation for upgradable guard creation function.
  • d0d4ee9 Updated documentation for guard creation functions
  • 05e6a4e Merge pull request #405 from NordSecurity/add_apple_tvos_support
  • Additional commits viewable in compare view

Updates mio from 0.8.8 to 0.8.9

Changelog

Sourced from mio's changelog.

0.8.9

Added

Fixed

Commits
  • e80c3b2 Release v0.8.9
  • 862786b Fix importing of IoSourceState
  • 4034872 Add support for vita target
  • 8eb4010 Fix receiver and sender fd in pipe based waker
  • 9f21ce1 Enable sys::unix::pipe when using pipe based Waker
  • e7a0685 Reuse pipe2 polyfill code
  • 808dbb0 Implement pipe2 for AIX
  • 605ba78 Add AIX operating system support
  • 8dd37c5 Skip MSRV test for macOS
  • 2856112 Run the MSRV CI check on more platforms
  • Additional commits viewable in compare view

Updates parking_lot_core from 0.9.8 to 0.9.9

Changelog

Sourced from parking_lot_core's changelog.

parking_lot_core 0.9.9, lock_api 0.4.11 (2023-10-18)

  • Fixed RwLockUpgradeableReadGuard::with_upgraded. (#393)
  • Fixed ReentrantMutex::bump lock count. (#390)
  • Added methods to unsafely create a lock guard out of thin air. (#403)
  • Added support for Apple tvOS. (#405)
Commits
  • 8d92826 Release lock_api 0.4.11 and parking_lot_core 0.9.9
  • 8e9b3b9 Merge pull request #348 from claui/rust-version
  • 669bf52 Merge pull request #403 from Lochlanna/public-guard-creation
  • 3f38a9e rename arc guard creation methods
  • b6eb569 Merge pull request #407 from alex/patch-1
  • aa2115f Updated redox_syscall dep
  • 8f5ccd0 small fix to doc wording on read guard methods
  • e927d19 Updated documentation for upgradable guard creation function.
  • d0d4ee9 Updated documentation for guard creation functions
  • 05e6a4e Merge pull request #405 from NordSecurity/add_apple_tvos_support
  • Additional commits viewable in compare view

Updates rustix from 0.38.19 to 0.38.20

Commits
  • 414309a chore: Release rustix version 0.38.20
  • ce11b6c Miscellaneous documentation cleanups. (#887)
  • a59a191 Fix sendmsg_unix's address encoding. (#885)
  • e35481c Fix a documentation link.
  • b8d7e00 Miscellaneous documentation cleanups. (#883)
  • 30a5ae1 Add support for armv7-sony-vita-newlibeabihf. (#882)
  • 702c54a Add documentation for how to do the equivalent of gethostname. (#880)
  • See full diff in compare view

Updates socket2 from 0.4.9 to 0.4.10

Changelog

Sourced from socket2's changelog.

0.4.10

Commits

Updates time from 0.3.29 to 0.3.30

Release notes

Sourced from time's releases.

v0.3.30

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.30 [2023-10-13]

Added

  • powerfmt::smart_display::SmartDisplay has been added for the main types in the library. These implementations ensure that values follow the requested fill, width, and alignment when using format! or similar macros. Display is implemented in terms of SmartDisplay.

Fixed

  • Large values no longer wrap around in release mode when using NumericalDuration or NumericalStdDuration.
Commits

Updates wide from 0.7.12 to 0.7.13

Commits

Updates winnow from 0.5.16 to 0.5.17

Changelog

Sourced from winnow's changelog.

[0.5.17] - 2023-10-13

Documentation

  • Provide lexer/parser example with details on handling of custom tokens
Commits
  • 897cd5e chore: Release
  • 9410634 docs: Update changelog
  • db577d9 Merge pull request #348 from epage/custom
  • c878116 docs(topic): Expand on custom tokens
  • e7e9b52 docs(examples): Add lexer/parser example
  • ecca81d fix: Allow custom tokens for Fn ContainsToken
  • 03c26b4 test(examples): Make arithmetic benches 1:1
  • 628760d refactor(example): Clean up main
  • 921a2a3 test(examples): Align arithmetic tests
  • eac1456 refactor(example): Further clean up of arithmetic
  • 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 group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.49` | `1.0.50` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.37` | `0.1.40` |
| [regex](https://github.com/rust-lang/regex) | `1.10.0` | `1.10.2` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.31.1` | `0.31.2` |
| [serde](https://github.com/serde-rs/serde) | `1.0.188` | `1.0.189` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.18.0` | `0.18.1` |
| [cmd_lib](https://github.com/rust-shell-script/rust_cmd_lib) | `1.3.0` | `1.5.0` |
| [ahash](https://github.com/tkaitchuck/ahash) | `0.8.3` | `0.8.4` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.73` | `0.1.74` |
| [deranged](https://github.com/jhpratt/deranged) | `0.3.8` | `0.3.9` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.27` | `1.0.28` |
| [iana-time-zone](https://github.com/strawlab/iana-time-zone) | `0.1.57` | `0.1.58` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.8.0` | `2.9.0` |
| [lock_api](https://github.com/Amanieu/parking_lot) | `0.4.10` | `0.4.11` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.8` | `0.8.9` |
| [parking_lot_core](https://github.com/Amanieu/parking_lot) | `0.9.8` | `0.9.9` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.19` | `0.38.20` |
| [socket2](https://github.com/rust-lang/socket2) | `0.4.9` | `0.4.10` |
| [time](https://github.com/time-rs/time) | `0.3.29` | `0.3.30` |
| [wide](https://github.com/Lokathor/wide) | `0.7.12` | `0.7.13` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.5.16` | `0.5.17` |


Updates `thiserror` from 1.0.49 to 1.0.50
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.49...1.0.50)

Updates `tracing` from 0.1.37 to 0.1.40
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.37...tracing-0.1.40)

Updates `regex` from 1.10.0 to 1.10.2
- [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.10.0...1.10.2)

Updates `octocrab` from 0.31.1 to 0.31.2
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.31.1...v0.31.2)

Updates `serde` from 1.0.188 to 1.0.189
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.188...v1.0.189)

Updates `cargo_metadata` from 0.18.0 to 0.18.1
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.18.0...0.18.1)

Updates `cmd_lib` from 1.3.0 to 1.5.0
- [Release notes](https://github.com/rust-shell-script/rust_cmd_lib/releases)
- [Commits](https://github.com/rust-shell-script/rust_cmd_lib/commits)

Updates `ahash` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/tkaitchuck/ahash/releases)
- [Commits](https://github.com/tkaitchuck/ahash/commits)

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

Updates `deranged` from 0.3.8 to 0.3.9
- [Commits](https://github.com/jhpratt/deranged/commits)

Updates `flate2` from 1.0.27 to 1.0.28
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.27...1.0.28)

Updates `iana-time-zone` from 0.1.57 to 0.1.58
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md)
- [Commits](strawlab/iana-time-zone@v0.1.57...v0.1.58)

Updates `ipnet` from 2.8.0 to 2.9.0
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](krisprice/ipnet@2.8.0...2.9.0)

Updates `lock_api` from 0.4.10 to 0.4.11
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@lock_api-0.4.10...lock_api-0.4.11)

Updates `mio` from 0.8.8 to 0.8.9
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.8...v0.8.9)

Updates `parking_lot_core` from 0.9.8 to 0.9.9
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@core-0.9.8...core-0.9.9)

Updates `rustix` from 0.38.19 to 0.38.20
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.38.19...v0.38.20)

Updates `socket2` from 0.4.9 to 0.4.10
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](rust-lang/socket2@v0.4.9...v0.4.10)

Updates `time` from 0.3.29 to 0.3.30
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.29...v0.3.30)

Updates `wide` from 0.7.12 to 0.7.13
- [Commits](Lokathor/wide@v0.7.12...v0.7.13)

Updates `winnow` from 0.5.16 to 0.5.17
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.5.16...v0.5.17)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: octocrab
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: cargo_metadata
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: cmd_lib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: ahash
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: async-trait
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: deranged
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: iana-time-zone
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: ipnet
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: lock_api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: mio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: parking_lot_core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: socket2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: time
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: wide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from hannobraun as a code owner October 23, 2023 14:41
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 23, 2023
@hannobraun
Copy link
Owner

Also included a manual upgrade to winit 0.29.2.

@hannobraun hannobraun merged commit baa0368 into main Oct 23, 2023
5 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-cb7db01f71 branch October 23, 2023 14:56
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