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

chore(deps): bump the cargo-deps group with 7 updates #112

Merged
merged 1 commit into from
Oct 8, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 7, 2024

Bumps the cargo-deps group with 7 updates:

Package From To
embassy-stm32 a7d1abf 631fec8
embassy-sync a7d1abf 631fec8
embassy-executor a7d1abf 631fec8
embassy-time a7d1abf 631fec8
embassy-embedded-hal a7d1abf 631fec8
futures 0.3.30 0.3.31
clap 4.5.18 4.5.19

Updates embassy-stm32 from a7d1abf to 631fec8

Commits
  • 631fec8 Merge pull request #3393 from sourcebox/sync-additions
  • 12e6add embassy-sync: renamed field len to capacity on zerocopy_channel state
  • f3ed0c6 embassy-sync: fix len calculation for zerocopy_channel
  • 8f27349 Merge pull request #3394 from AtoVproject/fix/embassy-sync-sender-typo
  • 67836f9 docs: fix Sender/Receiver typo
  • 383ad72 embassy-sync: add clear, len, is_empty and is_full functions to zerocopy_channel
  • b59143a Merge pull request #3391 from shilga/features/rp235x_clock
  • 7c3562c Merge pull request #3392 from 1-rafael-1/embassy-sync-README-mention-watch
  • d643d50 Add Watch to embassy-sync README
  • b73b3f2 rp: Run RP235x at 150 MHz instead of 125
  • Additional commits viewable in compare view

Updates embassy-sync from a7d1abf to 631fec8

Commits
  • 631fec8 Merge pull request #3393 from sourcebox/sync-additions
  • 12e6add embassy-sync: renamed field len to capacity on zerocopy_channel state
  • f3ed0c6 embassy-sync: fix len calculation for zerocopy_channel
  • 8f27349 Merge pull request #3394 from AtoVproject/fix/embassy-sync-sender-typo
  • 67836f9 docs: fix Sender/Receiver typo
  • 383ad72 embassy-sync: add clear, len, is_empty and is_full functions to zerocopy_channel
  • b59143a Merge pull request #3391 from shilga/features/rp235x_clock
  • 7c3562c Merge pull request #3392 from 1-rafael-1/embassy-sync-README-mention-watch
  • d643d50 Add Watch to embassy-sync README
  • b73b3f2 rp: Run RP235x at 150 MHz instead of 125
  • Additional commits viewable in compare view

Updates embassy-executor from a7d1abf to 631fec8

Commits
  • 631fec8 Merge pull request #3393 from sourcebox/sync-additions
  • 12e6add embassy-sync: renamed field len to capacity on zerocopy_channel state
  • f3ed0c6 embassy-sync: fix len calculation for zerocopy_channel
  • 8f27349 Merge pull request #3394 from AtoVproject/fix/embassy-sync-sender-typo
  • 67836f9 docs: fix Sender/Receiver typo
  • 383ad72 embassy-sync: add clear, len, is_empty and is_full functions to zerocopy_channel
  • b59143a Merge pull request #3391 from shilga/features/rp235x_clock
  • 7c3562c Merge pull request #3392 from 1-rafael-1/embassy-sync-README-mention-watch
  • d643d50 Add Watch to embassy-sync README
  • b73b3f2 rp: Run RP235x at 150 MHz instead of 125
  • Additional commits viewable in compare view

Updates embassy-time from a7d1abf to 631fec8

Commits
  • 631fec8 Merge pull request #3393 from sourcebox/sync-additions
  • 12e6add embassy-sync: renamed field len to capacity on zerocopy_channel state
  • f3ed0c6 embassy-sync: fix len calculation for zerocopy_channel
  • 8f27349 Merge pull request #3394 from AtoVproject/fix/embassy-sync-sender-typo
  • 67836f9 docs: fix Sender/Receiver typo
  • 383ad72 embassy-sync: add clear, len, is_empty and is_full functions to zerocopy_channel
  • b59143a Merge pull request #3391 from shilga/features/rp235x_clock
  • 7c3562c Merge pull request #3392 from 1-rafael-1/embassy-sync-README-mention-watch
  • d643d50 Add Watch to embassy-sync README
  • b73b3f2 rp: Run RP235x at 150 MHz instead of 125
  • Additional commits viewable in compare view

Updates embassy-embedded-hal from a7d1abf to 631fec8

Commits
  • 631fec8 Merge pull request #3393 from sourcebox/sync-additions
  • 12e6add embassy-sync: renamed field len to capacity on zerocopy_channel state
  • f3ed0c6 embassy-sync: fix len calculation for zerocopy_channel
  • 8f27349 Merge pull request #3394 from AtoVproject/fix/embassy-sync-sender-typo
  • 67836f9 docs: fix Sender/Receiver typo
  • 383ad72 embassy-sync: add clear, len, is_empty and is_full functions to zerocopy_channel
  • b59143a Merge pull request #3391 from shilga/features/rp235x_clock
  • 7c3562c Merge pull request #3392 from 1-rafael-1/embassy-sync-README-mention-watch
  • d643d50 Add Watch to embassy-sync README
  • b73b3f2 rp: Run RP235x at 150 MHz instead of 125
  • Additional commits viewable in compare view

Updates futures from 0.3.30 to 0.3.31

Release notes

Sourced from futures's releases.

0.3.31

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Changelog

Sourced from futures's changelog.

0.3.31 - 2024-10-05

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Commits
  • 1e05281 Release 0.3.31
  • 8a8b085 Fix clippy::uninit_vec warning
  • f3fb74d Document how BoxFutures / BoxStreams are often made (#2887)
  • f00e7af Fix use after free of task in FuturesUnordered when dropped future panics (#2...
  • 33c46b3 ci: Work around sanitizer issue on latest Linux kernel
  • 7bf5a72 Fix issues with AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • 87afaf3 Use #[inline(always)] on clone_arc_raw (#2865)
  • 549b90b Add accessors for the inner of stream::Iter (#2875)
  • 07b004a Add missing symbols (#2883)
  • 86dc069 Various fixes too make the CI green (#2885)
  • Additional commits viewable in compare view

Updates clap from 4.5.18 to 4.5.19

Release notes

Sourced from clap's releases.

v4.5.19

[4.5.19] - 2024-10-01

Internal

  • Update dependencies
Changelog

Sourced from clap's changelog.

[4.5.19] - 2024-10-01

Internal

  • Update dependencies
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 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-deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [embassy-stm32](https://github.com/embassy-rs/embassy) | ``a7d1abf`` | ``631fec8`` |
| [embassy-sync](https://github.com/embassy-rs/embassy) | ``a7d1abf`` | ``631fec8`` |
| [embassy-executor](https://github.com/embassy-rs/embassy) | ``a7d1abf`` | ``631fec8`` |
| [embassy-time](https://github.com/embassy-rs/embassy) | ``a7d1abf`` | ``631fec8`` |
| [embassy-embedded-hal](https://github.com/embassy-rs/embassy) | ``a7d1abf`` | ``631fec8`` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [clap](https://github.com/clap-rs/clap) | `4.5.18` | `4.5.19` |


Updates `embassy-stm32` from `a7d1abf` to `631fec8`
- [Commits](embassy-rs/embassy@a7d1abf...631fec8)

Updates `embassy-sync` from `a7d1abf` to `631fec8`
- [Commits](embassy-rs/embassy@a7d1abf...631fec8)

Updates `embassy-executor` from `a7d1abf` to `631fec8`
- [Commits](embassy-rs/embassy@a7d1abf...631fec8)

Updates `embassy-time` from `a7d1abf` to `631fec8`
- [Commits](embassy-rs/embassy@a7d1abf...631fec8)

Updates `embassy-embedded-hal` from `a7d1abf` to `631fec8`
- [Commits](embassy-rs/embassy@a7d1abf...631fec8)

Updates `futures` from 0.3.30 to 0.3.31
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.30...0.3.31)

Updates `clap` from 4.5.18 to 4.5.19
- [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.18...clap_complete-v4.5.19)

---
updated-dependencies:
- dependency-name: embassy-stm32
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: embassy-sync
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: embassy-executor
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: embassy-time
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: embassy-embedded-hal
  dependency-type: direct:production
  dependency-group: cargo-deps
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

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 Oct 7, 2024
@shymega shymega merged commit d84740e into main Oct 8, 2024
1 of 5 checks passed
@shymega shymega deleted the dependabot/cargo/cargo-deps-429cd446ae branch October 8, 2024 17:19
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