ncsurobotics / SW8S-Rust

Rust code for Seawolf 8
GNU General Public License v3.0
3 stars 1 forks source link

Bump the all-dependencies group across 1 directory with 9 updates #161

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the all-dependencies group with 9 updates in the / directory:

Package From To
opencv 0.92.0 0.92.2
tokio 1.38.0 1.39.2
toml 0.8.14 0.8.19
serde 1.0.203 1.0.204
bytes 1.6.0 1.7.1
uuid 1.9.0 1.10.0
flate2 1.0.30 1.0.31
syn 2.0.68 2.0.72
cc 1.0.99 1.1.7

Updates opencv from 0.92.0 to 0.92.2

Changelog

Sourced from opencv's changelog.

  • 0.92.2

    • Fix new warnings with Rust 1.80
    • Don't export ocvrs_create_string and ocvrs_create_byte_string from the rlib to allow combining multiple opencv create versions as dependencies.
  • 0.92.1

    • Implement Send and Sync where applicable for Mat, Ptr and Tuple.
    • Introduce new Mat constructors that take byte slices: from_bytes/_mut and new_rows_cols_with_bytes/_mut
    • Add missing Mat_::at_row/_mut methods.
Commits


Updates tokio from 1.38.0 to 1.39.2

Release notes

Sourced from tokio's releases.

Tokio v1.39.2

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#6722)

#6722: tokio-rs/tokio#6722

Tokio v1.39.1

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#6715)

#6715: tokio-rs/tokio#6715

Tokio v1.39.0

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#6645)
  • This release upgrades to mio v1. (#6635)
  • This release upgrades to windows-sys v0.52 (#6154)

Added

  • io: implement AsyncSeek for Empty (#6663)
  • metrics: stabilize num_alive_tasks (#6619, #6667)
  • process: add Command::as_std_mut (#6608)
  • sync: add watch::Sender::same_channel (#6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#6661)
  • sync: implement Default for watch::Sender (#6626)
  • task: implement Clone for AbortHandle (#6621)
  • task: stabilize consume_budget (#6622)

Changed

  • io: improve panic message of ReadBuf::put_slice() (#6629)
  • io: read during write in copy_bidirectional and copy (#6532)
  • runtime: replace num_cpus with available_parallelism (#6709)
  • task: avoid stack overflow when passing large future to block_on (#6692)
  • time: avoid traversing entries in the time wheel twice (#6584)
  • time: support IntoFuture with timeout (#6666)
  • macros: support IntoFuture with join! and select! (#6710)

Fixed

  • docs: fix docsrs builds with the fs feature enabled (#6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#6668)
  • time: fix overflow panic when using large durations with Interval (#6612)

Added (unstable)

... (truncated)

Commits


Updates toml from 0.8.14 to 0.8.19

Commits


Updates serde from 1.0.203 to 1.0.204

Release notes

Sourced from serde's releases.

v1.0.204

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#2767, thanks @​weiznich)
Commits
  • 18dcae0 Release 1.0.204
  • 58c307f Alphabetize list of rustc-check-cfg
  • 8cc4809 Merge pull request #2769 from dtolnay/onunimpl
  • 1179158 Update ui test with diagnostic::on_unimplemented from PR 2767
  • 91aa40e Add ui test of unsatisfied serde trait bound
  • 595019e Cut test_suite from workspace members in old toolchain CI jobs
  • b0d7917 Pull in trybuild 'following types implement trait' fix
  • 8e6637a Merge pull request #2767 from weiznich/feature/diagnostic_on_unimplemented
  • 694fe05 Use the #[diagnostic::on_unimplemented] attribute when possible
  • f3dfd2a Suppress dead code warning in test of unit struct remote derive
  • Additional commits viewable in compare view


Updates bytes from 1.6.0 to 1.7.1

Release notes

Sourced from bytes's releases.

Bytes 1.7.1

1.7.1 (August 1, 2024)

This release reverts the following change due to a regression:

  • Reuse capacity when possible in <BytesMut as Buf>::advance impl (#698)

The revert can be found at #726.

Bytes 1.7.0

1.7.0 (July 31, 2024)

Added

  • Add conversion from Bytes to BytesMut (#695, #710)
  • Add reclaim method without additional allocation (#686)

Documented

  • Clarify how BytesMut::zeroed works (#714)
  • Clarify the behavior of Buf::chunk (#717)

Changed

  • Change length condition of BytesMut::truncate
  • Reuse capacity when possible in <BytesMut as Buf>::advance impl (#698)
  • Improve must_use suggestion of BytesMut::split (#699)

Internal changes

  • Use ManuallyDrop instead of mem::forget (#678)
  • Don't set len in BytesMut::reserve (#682)
  • Optimize Bytes::copy_to_bytes (#688)
  • Refactor BytesMut::truncate (#694)
  • Refactor BytesMut::resize (#696)
  • Reorder assertion in Bytes::split_to, Bytes::split_off (#689, #693)
  • Use offset_from in more places (#705)
  • Correct the wrong usage of IntoIter (#707)

Bytes 1.6.1

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Changelog

Sourced from bytes's changelog.

1.7.1 (August 1, 2024)

This release reverts the following change due to a regression:

  • Reuse capacity when possible in <BytesMut as Buf>::advance impl (#698)

The revert can be found at #726.

1.7.0 (July 31, 2024)

Added

  • Add conversion from Bytes to BytesMut (#695, #710)
  • Add reclaim method without additional allocation (#686)

Documented

  • Clarify how BytesMut::zeroed works (#714)
  • Clarify the behavior of Buf::chunk (#717)

Changed

  • Change length condition of BytesMut::truncate
  • Reuse capacity when possible in <BytesMut as Buf>::advance impl (#698)
  • Improve must_use suggestion of BytesMut::split (#699)

Internal changes

  • Use ManuallyDrop instead of mem::forget (#678)
  • Don't set len in BytesMut::reserve (#682)
  • Optimize Bytes::copy_to_bytes (#688)
  • Refactor BytesMut::truncate (#694)
  • Refactor BytesMut::resize (#696)
  • Reorder assertion in Bytes::split_to, Bytes::split_off (#689, #693)
  • Use offset_from in more places (#705)
  • Correct the wrong usage of IntoIter (#707)

1.6.1 (July 13, 2024)

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Commits


Updates uuid from 1.9.0 to 1.10.0

Release notes

Sourced from uuid's releases.

1.10.0

Deprecations

This release deprecates and renames the following functions:

  • Builder::from_rfc4122_timestamp -> Builder::from_gregorian_timestamp
  • Builder::from_sorted_rfc4122_timestamp -> Builder::from_sorted_gregorian_timestamp
  • Timestamp::from_rfc4122 -> Timestamp::from_gregorian
  • Timestamp::to_rfc4122 -> Timestamp::to_gregorian

What's Changed

New Contributors

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0

1.9.1

What's Changed

Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1

Commits
  • 4b4c590 Merge pull request #766 from uuid-rs/cargo/1.10.0
  • 68eff32 Merge pull request #765 from uuid-rs/chore/time-fn-deprecations
  • 3d5384d update docs and deprecation messages for timestamp fns
  • de50f20 renaming rfc4122 functions
  • 4a88417 prepare for 1.10.0 release
  • 66b4fce Merge pull request #764 from Vrajs16/main
  • 8896e26 Use expr instead of ident
  • 09973d6 Added changes
  • 6edf3e8 Use const identifer in uuid macro
  • 36e6f57 Merge pull request #763 from uuid-rs/cargo/1.9.1
  • Additional commits viewable in compare view


Updates flate2 from 1.0.30 to 1.0.31

Commits


Updates syn from 2.0.68 to 2.0.72

Release notes

Sourced from syn's releases.

2.0.72

2.0.71

2.0.70

2.0.69

  • Correctly parenthesize labeled loops inside a break value (#1692)
  • Add Punctuated::get and get_mut (#1693)
Commits
  • c59828f Release 2.0.72
  • 5821371 Merge pull request #1709 from dtolnay/up
  • 87401bf Add issue links for missing syntax support
  • a3f2f50 Categorize newly failing rust repo source files
  • 378f4e2 Update test suite to nightly-2024-07-21
  • 788f8cb Improve errors on unexpected token in precise capture bound
  • 11b2371 Merge pull request #1707 from compiler-errors/precise-capturing
  • bed32d2 Parse use<> precise capturing as Verbatim
  • f34dc7b Release 2.0.71
  • 896d58b Merge pull request #1706 from lemunozm/patch-1
  • Additional commits viewable in compare view


Updates cc from 1.0.99 to 1.1.7

Release notes

Sourced from cc's releases.

cc-v1.1.7

Other

cc-v1.1.6

Other

cc-v1.1.5

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)

cc-v1.1.4

Other

  • Support compiling on wasm targets (Supersede #1068) (#1160)

cc-v1.1.3

Other

  • Reduce msrv to 1.63 (#1158)
  • Revert "Use raw-dylib for windows-sys (#1137)" (#1157)
  • Fix typos (#1152)
  • Fix doc_lazy_continuation lints (#1153)

cc-v1.1.2

Other

  • Add empty jobserver feature. (#1150)

cc-v1.1.1

Other

  • Fix is_flag_supported not respecting emit_rerun_if_env_changed (#1147) (#1148)

cc-v1.1.0

Added

  • add cargo_output to eliminate last vestiges of stdout pollution (#1141)

cc-v1.0.106

Other

  • Drop support for Visual Studio 12 (2013) (#1046)
  • Use raw-dylib for windows-sys (#1137)
  • Bump msrv to 1.67 (#1143)
  • Bump msrv to 1.65 (#1140)
  • Fix clippy warnings (#1138)

cc-v1.0.105

Other

  • Regenerate windows sys bindings (#1132)
  • Fix generate-windows-sys-bindings (#1133)
  • Fix gen-windows-sys-binding (#1130)
  • Fix gen-windows-sys-binding (#1127)
  • Update windows-bindgen requirement from 0.57 to 0.58 (#1123)

... (truncated)

Changelog

Sourced from cc's changelog.

1.1.7 - 2024-07-29

Other

1.1.6 - 2024-07-19

Other

1.1.5 - 2024-07-15

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)

1.1.4 - 2024-07-14

Other

  • Support compiling on wasm targets (Supersede #1068) (#1160)

1.1.3 - 2024-07-14

Other

  • Reduce msrv to 1.63 (#1158)
  • Revert "Use raw-dylib for windows-sys (#1137)" (#1157)
  • Fix typos (#1152)
  • Fix doc_lazy_continuation lints (#1153)

1.1.2 - 2024-07-12

Other

  • Add empty jobserver feature. (#1150)

1.1.1 - 2024-07-12

Other

  • Fix is_flag_supported not respecting emit_rerun_if_env_changed (#1147) (#1148)

1.1.0 - 2024-07-08

Added

  • add cargo_output to eliminate last vestiges of stdout pollution (#1141)

1.0.106 - 2024-07-08

Other

  • Drop support for Visual Studio 12 (2013) (#1046)
  • Use raw-dylib for windows-sys (#1137)
  • Bump msrv to 1.67 (#1143)
  • Bump msrv to 1.65 (#1140)

... (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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 month ago

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