Skip to content

Bump the all-dependencies group across 1 directory with 26 updates#201

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/all-dependencies-7465dda8a3
Closed

Bump the all-dependencies group across 1 directory with 26 updates#201
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/all-dependencies-7465dda8a3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Sep 18, 2025

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

Package From To
opencv 0.94.2 0.95.1
geo 0.30.0 0.31.0
hdbscan 0.10.1 0.11.0
tokio 1.45.1 1.47.1
anyhow 1.0.95 1.0.99
itertools 0.13.0 0.14.0
derive-getters 0.4.0 0.5.0
toml 0.8.20 0.9.5
uuid 1.13.1 1.18.1
graphviz-rust 0.9.3 0.9.5
chrono 0.4.39 0.4.42
reqwest 0.12.12 0.12.23
async-channel 2.3.1 2.5.0
serde_json 1.0.140 1.0.145
tokio-util 0.7.15 0.7.16
criterion 0.5.1 0.7.0
rayon 1.10.0 1.11.0
flate2 1.0.35 1.1.2
tar 0.4.43 0.4.44
zip-extract 0.1.3 0.4.1
quote 1.0.38 1.0.40
syn 2.0.98 2.0.106
proc-macro2 1.0.95 1.0.101
cc 1.2.13 1.2.37

Updates opencv from 0.94.2 to 0.95.1

Changelog

Sourced from opencv's changelog.

  • 0.95.1

    • Add Deref for MatSize.
    • Fix assertion error with Mat::at addressing on OpenCV 4.12.
    • Drop unneeded dep that was causing build failures in crossbuild environments (fixes twistedfall/opencv-rust#682).
  • 0.95.0

    • MatSize now carries a lifetime because it borrows the data from a Mat on creation.
    • Conditional compilation macros for detecting which module is enabled are now added in the form opencv_has_module_<MODULE_NAME>!.
    • Conditional compilation macros for detecting supported OpenCV compilation-time features: opencv_has_inherent_feature_<FEATURE>!.
    • OpenCV branch conditional compilation macros now support both positive and negative code branch in the same macro call. E.g., opencv_branch_4! { { <code block when branch is 4.x> } else { <code block when branch is not 4.x> } }.
    • Fix building when OpenCV CUDA-related headers are missing.
  • 0.94.4

  • 0.94.3

    • Add another workaround for building on Windows with clang-runtime feature enabled and clang-20 this time (fixes twistedfall/opencv-rust#628 again).
Commits

Updates geo from 0.30.0 to 0.31.0

Commits

Updates geo-types from 0.7.16 to 0.7.17

Commits
  • 36b0f89 prepare for 0.7.17 release
  • 56ca824 Merge pull request #1390 from georust/mkirk/new-sweep-generic
  • 1004e17 Intersections takes any (generic) Segment
  • bbf4446 Merge pull request #1389 from georust/mkirk/wkt-rect
  • 1e1552a wkt! macro for non-standard variants (LINE/RECT/TRIANGLE)
  • 11c626f Merge pull request #1378 from cookiedan42/intersects-poly-poly
  • ed03df2 Merge pull request #1387 from georust/mkirk/new-sweep-edits
  • 23f98f8 Simplify and speed up Intersections sweep line
  • 46d9d29 Merge pull request #1382 from cuppachino/main
  • e01be07 fix rustdoc link
  • Additional commits viewable in compare view

Updates hdbscan from 0.10.1 to 0.11.0

Changelog

Sourced from hdbscan's changelog.

Version 0.11.0 2025-08-03

Changes

  • Addition of optional parallel feature that adds a method cluster_par to the Hdbscan struct. This method leverages rayon to perform some operations in parallel, although will likely only be beneficial for large datasets or datasets with high dimensionality. There are still other operations that can be done in parallel, but those will be done as part of future releases.

Version 0.10.0 2024-11-13

Changes

  • Added the ability to cluster from a precomputed distance matrix. This is useful when you have a distance matrix calculated from a different source and you want to cluster the data based on that matrix. This can be done by specifying DistanceMetric::Precalculated hyper parameter and providing the distance matrix as a 2D vector to Hdbscan::new.

Version 0.9.0 2024-11-13

Changes

  • Added Center::Medoid as a means of calculating the center of clusters. The medoid is the point in a cluster with the minimum distance to all other points. Computationally more expensive than centroids as requires calculation of pairwise distances (using the selected distance metric). The output will be an observed data point in the cluster.

Version 0.8.3 2024-10-15

Changes

  • Fix for a bug that occurred when allow_single_cluster was set to true and the root cluster is the only one potential cluster. This previously caused a panic, but could only be triggered for very small datasets.

Version 0.8.2 2024-10-11

Changes

  • Fix for a bug that occurred when allow_single_cluster was set to true. If you want to run clustering with this hyper parameter set to true, then it is strongly recommended that you use this version or higher.
  • Cluster centers for geographical clusters.

Version 0.8.1 2024-09-18

Changes

  • Consistency in cluster labels between runs of the algorithm. If you ran clustering on the same data numerous times, previously the same cluster would likely have had a different label each time. Now there is more stability in the labelling between runs.
  • Renamed the default constructor to default_hyper_params and deprecated the former. This is to avoid a name clash with Rust's Default trait.

Version 0.8.0 2024-09-12

Changes

  • Two new distance metrics - Haversine distance for clustering geographical data on the Earth's surface and Cylindrical distance for clustering cylindrical coordinates like HSV colours.
  • General refactoring.

Version 0.7.0 2024-08-15

Changes

  • Added the epsilon hyper parameter. In HDBSCAN, each cluster has an epsilon value, which is the distance threshold at which the cluster first appears, or the level that it splits from its parent cluster. Setting this epsilon parameter creates a distance threshold that a cluster must have existed at to be selected. If a cluster does not meet

... (truncated)

Commits

Updates tokio from 1.45.1 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.47.1

1.47.1 (August 1st, 2025)

Fixed

  • process: fix panic from spurious pidfd wakeup (#7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#7485)

#7485: tokio-rs/tokio#7485 #7494: tokio-rs/tokio#7494

Tokio v1.47.0

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for cooperative scheduling, adds SetOnce to the sync module which provides similar functionality to [std::sync::OnceLock], and adds a new method sync::Notify::notified_owned() which returns an OwnedNotified without a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#7405)
  • sync: add SetOnce (#7418)
  • sync: add sync::Notify::notified_owned() (#7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 (#7117)
  • deps: update to socket2 v0.6 (#7443)
  • sync: improve AtomicWaker::wake performance (#7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#7449)
  • runtime: improve safety comments of Readiness<'_> (#7415)

#7405: tokio-rs/tokio#7405 #7415: tokio-rs/tokio#7415 #7418: tokio-rs/tokio#7418 #7449: tokio-rs/tokio#7449 #7450: tokio-rs/tokio#7450 #7465: tokio-rs/tokio#7465

Tokio v1.46.1

1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using tokio::spawn rather than Runtime::spawn. This issue only effected the spawn location in TaskMeta::spawned_at, and did not effect task locations in Tracing events.

... (truncated)

Commits

Updates anyhow from 1.0.95 to 1.0.99

Release notes

Sourced from anyhow's releases.

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)

1.0.98

1.0.97

  • Documentation improvements

1.0.96

  • Documentation improvements
Commits
  • f2b963a Release 1.0.99
  • 2c64c15 Merge pull request #420 from dtolnay/enotempty
  • 8cf66f7 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
  • f5e145c Revert "Pin nightly toolchain used for miri job"
  • 1d7ef1d Update ui test suite to nightly-2025-06-30
  • 6929572 Update ui test suite to nightly-2025-06-18
  • 37224e3 Ignore mismatched_lifetime_syntaxes lint
  • 11f0e81 Pin nightly toolchain used for miri job
  • d04c999 Raise required compiler for backtrace feature to rust 1.82
  • 219d163 Update test suite to nightly-2025-05-01
  • Additional commits viewable in compare view

Updates itertools from 0.13.0 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

  • Increased MSRV to 1.63.0 (#960)
  • Removed generic parameter from cons_tuples (#988)

Added

  • Added array_combinations (#991)
  • Added k_smallest_relaxed and variants (#925)
  • Added next_array and collect_array (#560)
  • Implemented DoubleEndedIterator for FilterOk (#948)
  • Implemented DoubleEndedIterator for FilterMapOk (#950)

Changed

  • Allow Q: ?Sized in Itertools::contains (#971)
  • Improved hygiene of chain! (#943)
  • Improved into_group_map_by documentation (#1000)
  • Improved tree_reduce documentation (#955)
  • Improved discoverability of merge_join_by (#966)
  • Improved discoverability of take_while_inclusive (#972)
  • Improved documentation of find_or_last and find_or_first (#984)
  • Prevented exponentially large type sizes in tuple_combinations (#945)
  • Added track_caller attr for asser_equal (#976)

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)
Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates derive-getters from 0.4.0 to 0.5.0

Updates toml from 0.8.20 to 0.9.5

Commits

Updates serde from 1.0.219 to 1.0.225

Release notes

Sourced from serde's releases.

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 1d7899d Release 1.0.225
  • 97168d3 Touch up PR 2879
  • 373b11d Merge pull request 2879 from rcrisanti/fix/silence-deprecation-warnings-derive
  • 69072f2 Merge pull request 2931 from Mingun/unify-serde-access
  • 5b37e8a Merge pull request #2980 from dtolnay/private
  • b47f4df Unify access to the serde namespace
  • cbe98a9 Use differently named __private module per patch release
  • 957996f Make all use of __private go through interpolation
  • 1699882 Release 1.0.224
  • 840f6ec Merge pull request #2979 from dtolnay/private
  • Additional commits viewable in compare view

Updates uuid from 1.13.1 to 1.18.1

Release notes

Sourced from uuid's releases.

v1.18.1

What's Changed

Full Changelog: uuid-rs/uuid@v1.18.0...v1.18.1

v1.18.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.17.0...v1.18.0

v1.17.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.16.0...v1.17.0

v1.16.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.15.1...v1.16.0

v1.15.1

What's Changed

... (truncated)

Commits
  • 50d8e79 Merge pull request #842 from uuid-rs/cargo/v1.18.1
  • 7948592 prepare for 1.18.1 release
  • 6d847c7 Merge pull request #841 from uuid-rs/chore/unsafe-cleanup
  • 675cccc re-gate zerocopy behind unstable feature flag
  • 4dd5828 Remove some unsafe; stabilize zerocopy
  • 60a49eb Merge pull request #839 from uuid-rs/cargo/v1.18.0
  • eb8c697 prepare for 1.18.0 release
  • 281f26f Merge pull request #838 from uuid-rs/chore/time-conversion
  • 2d67ab2 don't use allocated values in errors
  • c284ed5 wrap the error type used in time conversions
  • Additional commits viewable in compare view

Updates graphviz-rust from 0.9.3 to 0.9.5

Commits

Updates chrono from 0.4.39 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

v0.4.41

What's Changed

0.4.40

What's Changed

Commits
  • f3fd15f Bump version to 0.4.42
  • 5cf5603 strftime: add regression test case
  • a623170 strftime: simplify error handling
  • 36fbfb1 strftime: move specifier handling out of match to reduce rightward drift
  • 7f413c3 strftime: yield None early
  • 9d5dfe1 strftime: outline constants
  • e5f6be7 strftime: move error() method below caller
  • d516c27 strftime: merge impl blocks
  • 0ee2172 strftime: re-order items to keep impls together
  • 757a8b0 Upgrade to windows-bindgen 0.63
  • Additional commits viewable in compare view

Updates reqwest from 0.12.12 to 0.12.23

Release notes

Sourced from reqwest's releases.

v0.12.23

tl;dr

  • 🇺🇩🇸 Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • 🔁 Add ClientBuilder::retries(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuilder::dns_resolver2() with more ergonomic argument bounds, allowing more resolver implementations.
  • Add http3_* options to blocking::ClientBuilder.
  • Fix default TCP timeout values to enabled and faster.
  • Fix SOCKS proxies to default to port 1080
  • (wasm) Add cache methods to RequestBuilder.

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.22...v0.12.23

v0.12.22

tl;dr

  • Fix socks proxies when resolving IPv6 destinations.

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.21...v0.12.22

v0.12.21

tl;dr

  • Fix socks proxy to use socks4a:// instead of socks4h://.

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.23

  • Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • Add ClientBuilder::retry(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuilder::dns_resolver2() with more ergonomic argument bounds, allowing more resolver implementations.
  • Add http3_* options to blocking::ClientBuilder.
  • Fix default TCP timeout values to enabled and faster.
  • Fix SOCKS proxies to default to port 1080
  • (wasm) Add cache methods to RequestBuilder.

v0.12.22

  • Fix socks proxies when resolving IPv6 destinations.

v0.12.21

  • Fix socks proxy to use socks4a:// instead of socks4h://.
  • Fix Error::is_timeout() to check for hyper and IO timeouts too.
  • Fix request Error to again include URLs when possible.
  • Fix socks connect error to include more context.
  • (wasm) implement Default for Body.

v0.12.20

  • Add ClientBuilder::tcp_user_timeout(Duration) option to set TCP_USER_TIMEOUT.
  • Fix proxy headers only using the first matched proxy.
  • (wasm) Fix re-adding Error::is_status().

v0.12.19

  • Fix redirect that changes the method to GET should remove payload headers.
  • Fix redirect to only check the next scheme if the policy action is to follow.
  • (wasm) Fix compilation error if cookies feature is enabled (by the way, it's a noop feature in wasm).

v0.12.18

  • Fix compilation when socks enabled without TLS.

v0.12.17

  • Fix compilation on macOS.

v0.12.16

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.

... (truncated)

Commits
  • ae7375b v0.12.23
  • 9aacdc1 feat: add dns_resolver2 that is more ergonomic and flexible (#2793)
  • 221be11 refactor: loosen retry for_host parameter bounds (#2792)
  • acd1b05 feat: add reqwest::retry policies (#2763)
  • 54b6022 feat: add ClientBuilder::unix_socket() option (#2624)
  • 6358cef fix: add default tcp keepalive and user_timeout values (#2780)
  • 21226a5 style(client): use std::task::ready! macro to simplify Poll branch matching...
  • 82086e7 feat: add request cache options for wasm (#2775)
  • 2a0f7a3 ci: use msrv-aware cargo in msrv job (#2779)
  • f186803 fix(proxy): restore default port 1080 for SOCKS proxies without explicit port...
  • Additional commits viewable in compare view

Updates async-channel from 2.3.1 to 2.5.0

Release notes

Sourced from async-channel's releases.

v2.5.0

  • Add Sender::closed() (#102)

v2.4.0

  • Add Sender::same_channel() and Receiver::same_channel(). (#98)
  • Add portable-atomic feature to support platforms without atomics. (#106)
Changelog

Sourced from async-channel's changelog.

Version 2.5.0

  • Add Sender::closed() (#102)

Version 2.4.0

  • Add Sender::same_channel() and Receiver::same_channel(). (#98)
  • Add portable-atomic feature to support platforms without atomics. (#106)
Commits

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

| Package | From | To |
| --- | --- | --- |
| [opencv](https://github.com/twistedfall/opencv-rust) | `0.94.2` | `0.95.1` |
| [geo](https://github.com/georust/geo) | `0.30.0` | `0.31.0` |
| [hdbscan](https://github.com/tom-whitehead/hdbscan) | `0.10.1` | `0.11.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.45.1` | `1.47.1` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.99` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.13.0` | `0.14.0` |
| derive-getters | `0.4.0` | `0.5.0` |
| [toml](https://github.com/toml-rs/toml) | `0.8.20` | `0.9.5` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.13.1` | `1.18.1` |
| [graphviz-rust](https://github.com/besok/graphviz-rust) | `0.9.3` | `0.9.5` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.42` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.23` |
| [async-channel](https://github.com/smol-rs/async-channel) | `2.3.1` | `2.5.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.145` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.15` | `0.7.16` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.5.1` | `0.7.0` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.10.0` | `1.11.0` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.35` | `1.1.2` |
| [tar](https://github.com/alexcrichton/tar-rs) | `0.4.43` | `0.4.44` |
| [zip-extract](https://github.com/MCOfficer/zip-extract) | `0.1.3` | `0.4.1` |
| [quote](https://github.com/dtolnay/quote) | `1.0.38` | `1.0.40` |
| [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.106` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.95` | `1.0.101` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.13` | `1.2.37` |



Updates `opencv` from 0.94.2 to 0.95.1
- [Changelog](https://github.com/twistedfall/opencv-rust/blob/master/CHANGES.md)
- [Commits](twistedfall/opencv-rust@v0.94.2...v0.95.1)

Updates `geo` from 0.30.0 to 0.31.0
- [Changelog](https://github.com/georust/geo/blob/main/CHANGES.md)
- [Commits](georust/geo@geo-0.30.0...geo-0.31.0)

Updates `geo-types` from 0.7.16 to 0.7.17
- [Changelog](https://github.com/georust/geo/blob/main/CHANGES.md)
- [Commits](georust/geo@geo-types-0.7.16...geo-types-0.7.17)

Updates `hdbscan` from 0.10.1 to 0.11.0
- [Changelog](https://github.com/tom-whitehead/hdbscan/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tom-whitehead/hdbscan/commits)

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

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

Updates `itertools` from 0.13.0 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.13.0...v0.14.0)

Updates `derive-getters` from 0.4.0 to 0.5.0

Updates `toml` from 0.8.20 to 0.9.5
- [Commits](toml-rs/toml@toml-v0.8.20...toml-v0.9.5)

Updates `serde` from 1.0.219 to 1.0.225
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.225)

Updates `uuid` from 1.13.1 to 1.18.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.13.1...v1.18.1)

Updates `graphviz-rust` from 0.9.3 to 0.9.5
- [Changelog](https://github.com/besok/graphviz-rust/blob/master/CHANGELOG.md)
- [Commits](https://github.com/besok/graphviz-rust/commits)

Updates `chrono` from 0.4.39 to 0.4.42
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.39...v0.4.42)

Updates `reqwest` from 0.12.12 to 0.12.23
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.12...v0.12.23)

Updates `async-channel` from 2.3.1 to 2.5.0
- [Release notes](https://github.com/smol-rs/async-channel/releases)
- [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-channel@v2.3.1...v2.5.0)

Updates `serde_json` from 1.0.140 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.140...v1.0.145)

Updates `tokio-util` from 0.7.15 to 0.7.16
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.15...tokio-util-0.7.16)

Updates `criterion` from 0.5.1 to 0.7.0
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.5.1...0.7.0)

Updates `rayon` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.10.0...rayon-core-v1.11.0)

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

Updates `tar` from 0.4.43 to 0.4.44
- [Commits](composefs/tar-rs@0.4.43...0.4.44)

Updates `zip-extract` from 0.1.3 to 0.4.1
- [Commits](MCOfficer/zip-extract@v0.1.3...v0.4.1)

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

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

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

Updates `cc` from 1.2.13 to 1.2.37
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.13...cc-v1.2.37)

---
updated-dependencies:
- dependency-name: opencv
  dependency-version: 0.95.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: geo
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: geo-types
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: hdbscan
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: anyhow
  dependency-version: 1.0.99
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: itertools
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: derive-getters
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: toml
  dependency-version: 0.9.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: serde
  dependency-version: 1.0.225
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: uuid
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: graphviz-rust
  dependency-version: 0.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: reqwest
  dependency-version: 0.12.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: async-channel
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: tokio-util
  dependency-version: 0.7.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: criterion
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rayon
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: flate2
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tar
  dependency-version: 0.4.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: zip-extract
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: quote
  dependency-version: 1.0.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: syn
  dependency-version: 2.0.106
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.101
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cc
  dependency-version: 1.2.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

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 Sep 18, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 24, 2025

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

@dependabot dependabot Bot closed this Nov 24, 2025
@dependabot dependabot Bot deleted the dependabot/cargo/all-dependencies-7465dda8a3 branch November 24, 2025 13:34
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.

0 participants