Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Bump the all-dependencies group across 1 directory with 27 updates#207

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/all-dependencies-26e9bd9023
Closed

Bump the all-dependencies group across 1 directory with 27 updates#207
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/all-dependencies-26e9bd9023

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

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

Package From To
opencv 0.94.2 0.97.2
geo 0.30.0 0.31.0
hdbscan 0.10.1 0.11.0
tokio 1.45.1 1.48.0
anyhow 1.0.95 1.0.100
itertools 0.13.0 0.14.0
derive-getters 0.4.0 0.5.0
toml 0.8.20 0.9.5
bytes 1.10.1 1.11.0
uuid 1.13.1 1.18.1
graphviz-rust 0.9.3 0.9.6
chrono 0.4.39 0.4.42
reqwest 0.12.12 0.12.24
async-channel 2.3.1 2.5.0
serde_json 1.0.140 1.0.145
tokio-util 0.7.15 0.7.17
criterion 0.5.1 0.7.0
rayon 1.10.0 1.11.0
flate2 1.0.35 1.1.5
tar 0.4.43 0.4.44
zip-extract 0.1.3 0.4.1
quote 1.0.38 1.0.42
syn 2.0.98 2.0.111
proc-macro2 1.0.95 1.0.103
cc 1.2.13 1.2.47

Updates opencv from 0.94.2 to 0.97.2

Changelog

Sourced from opencv's changelog.

  • 0.97.2

  • 0.97.1

  • 0.97.0

    • Static building has been improved for the cases where there are both static and dynamic libraries present: "static=" prefix is now correctly propagated to the linker flags.
    • For manually specified libraries via OPENCV_LINK_LIBS extension is used to hint on the linkage type, ".a", ".lib" and ".framework" are supported.
    • Another attempt to bump the windows crate to the latest version.
    • Bump MSRV to 1.82.0
  • 0.96.0

    • Introduce OPENCV_CMAKE_TOOLCHAIN_FILE and OPENCV_CMAKE_ARGS environment variables (fixes twistedfall/opencv-rust#683).
    • Enums that represent bitfields now generate the special structs that allow flag combinations, see OpenCVBitfieldEnum trait for details (fixes twistedfall/opencv-rust#675).
    • Mat::at no longer allows addressing matrices with more than 2 dimensions. OpenCV explicitly forbids this, and it was previously allowed by accident.
    • Mat::from_exact_iter now creates a 1-row matrix instead of 1-column matrix. Previous behavior was inconsistent with OpenCV.
    • MatStep indexing operator is now unsafe as it allowed out-of-bounds access.
    • "video" feature now depends on "dnn" (fixes twistedfall/opencv-rust#686).
    • Fix building with clang-21 on Windows (fixes twistedfall/opencv-rust#693).
    • Documentation generation improvements for overloaded functions.
    • Bump Rust MSRV to 1.81.0.
  • 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.48.0

Release notes

Sourced from tokio's releases.

Tokio v1.48.0

1.48.0 (October 14th, 2025)

The MSRV is increased to 1.71.

Added

  • fs: add File::max_buf_size (#7594)
  • io: export Chain of AsyncReadExt::chain (#7599)
  • net: add SocketAddr::as_abstract_name (#7491)
  • net: add TcpStream::quickack and TcpStream::set_quickack (#7490)
  • net: implement AsRef<Self> for TcpStream and UnixStream (#7573)
  • task: add LocalKey::try_get (#7666)
  • task: implement Ord for task::Id (#7530)

Changed

  • deps: bump windows-sys to version 0.61 (#7645)
  • fs: preserve max_buf_size when cloning a File (#7593)
  • macros: suppress clippy::unwrap_in_result in #[tokio::main] (#7651)
  • net: remove PollEvented noise from Debug formats (#7675)
  • process: upgrade Command::spawn_with to use FnOnce (#7511)
  • sync: remove inner mutex in SetOnce (#7554)
  • sync: use UnsafeCell::get_mut in Mutex::get_mut and RwLock::get_mut (#7569)
  • time: reduce the generated code size of Timeout<T>::poll (#7535)

Fixed

  • macros: fix hygiene issue in join! and try_join! (#7638)
  • net: fix copy/paste errors in udp peek methods (#7604)
  • process: fix error when runtime is shut down on nightly-2025-10-12 (#7672)
  • runtime: use release ordering in wake_by_ref() even if already woken (#7622)
  • sync: close the broadcast::Sender in broadcast::Sender::new() (#7629)
  • sync: fix implementation of unused RwLock::try_* methods (#7587)

Unstable

  • tokio: use cargo features instead of --cfg flags for taskdump and io_uring (#7655, #7621)
  • fs: support io_uring in fs::write (#7567)
  • fs: support io_uring with File::open() (#7617)
  • fs: support io_uring with OpenOptions (#7321)
  • macros: add local runtime flavor (#7375, #7597)

Documented

  • io: clarify the zero capacity case of AsyncRead::poll_read (#7580)
  • io: fix typos in the docs of AsyncFd readiness guards (#7583)
  • net: clarify socket gets closed on drop (#7526)
  • net: clarify the behavior of UCred::pid() on Cygwin (#7611)
  • net: clarify the supported platform of set_reuseport() and reuseport() (#7628)

... (truncated)

Commits
  • 556820f chore: prepare Tokio v1.48.0 (#7677)
  • fd1659a chore: prepare tokio-macros v2.6.0 (#7676)
  • 53e8aca ci: update nightly version to 2025-10-12 (#7670)
  • 9e5527d process: fix error when runtime is shut down on nightly-2025-10-12 (#7672)
  • 25a24de net: remove PollEvented noise from Debug formats (#7675)
  • c1fa25f task: clarify the behavior of several spawn_local methods (#7669)
  • e7e02fc fs: use FileOptions inside fs::File to support uring (#7617)
  • f7a7f62 ci: remove cargo-deny Unicode-DFS-2016 license exception config (#7619)
  • d1f1499 tokio: use cargo feature for taskdump support instead of cfg (#7655)
  • ad6f618 runtime: clarify the behavior of Handle::block_on (#7665)
  • Additional commits viewable in compare view

Updates anyhow from 1.0.95 to 1.0.100

Release notes

Sourced from anyhow's releases.

1.0.100

  • Teach clippy to lint formatting arguments in bail!, ensure!, anyhow! (#426)

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
  • 18c2598 Release 1.0.100
  • f271988 Merge pull request #426 from dtolnay/clippyfmt
  • 52f2115 Mark macros with clippy::format_args
  • da5fd9d Raise minimum tested compiler to rust 1.76
  • 211e409 Opt in to generate-macro-expansion when building on docs.rs
  • b48fc02 Enforce trybuild >= 1.0.108
  • d5f59fb Update ui test suite to nightly-2025-09-07
  • 238415d Update ui test suite to nightly-2025-08-24
  • 3bab070 Update actions/checkout@v4 -> v5
  • 4249254 Order cap-lints flag in the same order as thiserror build script
  • 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.228

Release notes

Sourced from serde's releases.

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

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
  • a866b33 Release 1.0.228
  • 5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
  • ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
  • 415d9fc Release 1.0.227
  • 7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
  • 9d3410e Merge pull request #2992 from dtolnay/inplaceseed
  • 2fb6748 Remove InPlaceSeed public re-export
  • f8137c7 Inline serde_core into serde in docsrs mode
  • b7dbf7e Merge pull request #2990 from dtolnay/integer128
  • 7c83691 No longer macro_use integer128 module
  • Additional commits viewable in compare view

Updates bytes from 1.10.1 to 1.11.0

Release notes

Sourced from bytes's releases.

Bytes v1.11.0

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Changelog

Sourced from bytes's changelog.

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Commits

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.6

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.24

Release notes

Sourced from reqwest's releases.

v0.12.24

Highlights

  • Refactor cookie handling to an internal middleware.
  • Refactor internal random generator.
  • Refactor base64 encoding to reduce a copy.
  • Documentation updates.

What's Changed

New Contributors

F...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [opencv](https://github.com/twistedfall/opencv-rust) | `0.94.2` | `0.97.2` |
| [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.48.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.100` |
| [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` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.1` | `1.11.0` |
| [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.6` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.42` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.24` |
| [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.17` |
| [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.5` |
| [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.42` |
| [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.111` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.95` | `1.0.103` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.13` | `1.2.47` |



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

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.48.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.45.1...tokio-1.48.0)

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

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.228
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.228)

Updates `bytes` from 1.10.1 to 1.11.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.10.1...v1.11.0)

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.6
- [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.24
- [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.24)

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.17
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.15...tokio-util-0.7.17)

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.5
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.35...1.1.5)

Updates `tar` from 0.4.43 to 0.4.44
- [Commits](alexcrichton/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.42
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.38...1.0.42)

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

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

Updates `cc` from 1.2.13 to 1.2.47
- [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.47)

---
updated-dependencies:
- dependency-name: opencv
  dependency-version: 0.97.2
  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.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: anyhow
  dependency-version: 1.0.100
  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.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: bytes
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.6
  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.24
  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.17
  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.5
  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.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: syn
  dependency-version: 2.0.111
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: proc-macro2
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cc
  dependency-version: 1.2.47
  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 Nov 24, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2025

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

@dependabot dependabot bot closed this Dec 8, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-dependencies-26e9bd9023 branch December 8, 2025 13:10
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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