Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2025

Bumps the minor group with 20 updates in the / directory:

Package From To
kittycad 0.3.36 0.3.41
clap 4.5.35 4.5.47
toml_edit 0.22.27 0.23.4
chrono 0.4.40 0.4.42
cxx 1.0.153 1.0.180
data-encoding 2.8.0 2.9.0
enum-iterator 2.1.0 2.3.0
parse-display 0.9.1 0.10.0
parse-display-derive 0.9.1 0.10.0
serde_json 1.0.139 1.0.143
tabled 0.18.0 0.20.0
uuid 1.16.0 1.18.1
regex 1.11.1 1.11.2
criterion 0.5.1 0.7.0
reqwest 0.12.15 0.12.23
thiserror 2.0.12 2.0.16
tokio 1.44.2 1.47.1
tokio-tungstenite 0.24.0 0.27.0
color-eyre 0.6.3 0.6.5
image 0.25.1 0.25.8

Updates kittycad from 0.3.36 to 0.3.41

Commits

Updates clap from 4.5.35 to 4.5.47

Release notes

Sourced from clap's releases.

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

v4.5.46

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str

v4.5.45

[4.5.45] - 2025-08-12

Fixes

  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

v4.5.43

[4.5.43] - 2025-08-06

Fixes

  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str

[4.5.45] - 2025-08-12

Fixes

  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

[4.5.43] - 2025-08-06

Fixes

  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help

[4.5.41] - 2025-07-09

Features

  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help

... (truncated)

Commits
  • f046ca6 chore: Release
  • 436949d docs: Update changelog
  • 1ddab84 Merge pull request #5954 from epage/tests
  • 8a66dbf test(complete): Add more native cases
  • 76465cf test(complete): Make things more consistent
  • 232cedb test(complete): Remove redundant index
  • 02244a6 Merge pull request #5949 from krobelus/option-name-completions-after-positionals
  • 2e13847 fix(complete): Missing options in multi-val arg
  • 74388d7 test(complete): Multi-valued, unbounded positional
  • 5b3d45f refactor(complete): Extract function for options
  • Additional commits viewable in compare view

Updates toml_edit from 0.22.27 to 0.23.4

Commits

Updates chrono from 0.4.40 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

v0.4.41

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 cxx from 1.0.153 to 1.0.180

Release notes

Sourced from cxx's releases.

1.0.180

  • Fix "Unable to resolve type 'str'" build error in C++ signatures containing &'static str in return type (#1623)

1.0.179

  • Better support extern function signatures containing elided lifetimes (#1621)

1.0.178

  • Fix macro redefinition warning when using -DRUST_CXX_NO_EXCEPTIONS in some compilers (#1616)
  • Support #[derive(Default)] on enums (#1618)
  • Support non-repr(C) Rust types that have methods implemented by C++ (#1620)

1.0.177

  • Allow unpinned mutable reference for any Unpin type (#1610)
  • Support slice of type alias of Rust types (#1613)

1.0.176

  • Allow extern types to appear in Box and Vec (#1605)
  • Fix elided_lifetimes_in_paths warning on type aliases that have lifetimes (#1608)

1.0.175

1.0.174

  • Disable -Wshadow-field-in-constructor and -Wdollar-in-identifier-extension in generated code (#1591, #1593)

1.0.173

  • Allow static associated functions with the same name on different Self types (#1585)
  • Deprecate extern shared struct syntax in favor of ExternType impl (#1586)
    + use cxx::ExternType;
    +
    + #[repr(C)]
    + pub struct Struct {
    +     ...
    + }
    +
    + unsafe impl ExternType for Struct {
    +     type Id = cxx::type_id!("path::to::Struct");
    +     type Kind = cxx::kind::Trivial;
    + }
    +
      #[cxx::bridge]
      pub mod ffi {
    -     struct Struct {
    -         ...
    -     }
    -
          #[namespace = "path::to"]
    -     unsafe extern "C++" {
    +     extern "C++" {

... (truncated)

Commits
  • c047ff7 Release 1.0.180
  • 22b3367 Delete unneeded codespan-reporting fixup
  • 9b39705 Revert unexpected_cfgs from expect to allow
  • 837fa68 Lockfile update
  • 776c295 Merge pull request #1623 from dtolnay/elidedstr
  • ca11dbe Fix contains_elided_lifetime for &'static str
  • 6525e17 Release 1.0.179
  • 87761ce Merge pull request #1621 from dtolnay/elision
  • 97ee444 Fix lifetime elision in return type of extern type methods
  • c5ca07e Add test of lifetime elision on type alias
  • Additional commits viewable in compare view

Updates data-encoding from 2.8.0 to 2.9.0

Commits

Updates enum-iterator from 2.1.0 to 2.3.0

Commits

Updates enum-iterator-derive from 1.4.0 to 1.5.0

Commits

Updates parse-display from 0.9.1 to 0.10.0

Changelog

Sourced from parse-display's changelog.

[0.10.0] - 2024-08-04

Changed

  • Set rust-version to 1.80.0.
  • In debug mode, it will panic if the result of FromStrFormat::regex varies for the same field depending on the type parameters.
  • Change the behavior when both #[display("...")] and #[from_str("...")] are specified for a field. (dc14a2b)

Fixed

  • Fix #[from_str] to not affect Display.
Commits
  • de8546b Version 0.10.0.
  • 384022a Simplify.
  • 130f2bc Fix document.
  • 126e356 Fix document for #[display(...)].
  • 0c4f68c Add documentation regarding the behavior when both #[display("...")] and `#...
  • dc14a2b Change behavior when both '#[display(...)]' and '#[from_str(regex = "...")]' ...
  • 5a13cb8 Add test.
  • 1b5f31a Rename variable.
  • 43b101f Improve error messages for compile errors caused by the expression specified ...
  • 18d4bdd Refactor: Use Vec instead of BTreeMap in ParserBuilder::with.
  • Additional commits viewable in compare view

Updates parse-display-derive from 0.9.1 to 0.10.0

Changelog

Sourced from parse-display-derive's changelog.

[0.10.0] - 2024-08-04

Changed

  • Set rust-version to 1.80.0.
  • In debug mode, it will panic if the result of FromStrFormat::regex varies for the same field depending on the type parameters.
  • Change the behavior when both #[display("...")] and #[from_str("...")] are specified for a field. (dc14a2b)

Fixed

  • Fix #[from_str] to not affect Display.
Commits
  • de8546b Version 0.10.0.
  • 384022a Simplify.
  • 130f2bc Fix document.
  • 126e356 Fix document for #[display(...)].
  • 0c4f68c Add documentation regarding the behavior when both #[display("...")] and `#...
  • dc14a2b Change behavior when both '#[display(...)]' and '#[from_str(regex = "...")]' ...
  • 5a13cb8 Add test.
  • 1b5f31a Rename variable.
  • 43b101f Improve error messages for compile errors caused by the expression specified ...
  • 18d4bdd Refactor: Use Vec instead of BTreeMap in ParserBuilder::with.
  • Additional commits viewable in compare view

Updates serde_json from 1.0.139 to 1.0.143

Release notes

Sourced from serde_json's releases.

v1.0.143

v1.0.142

v1.0.141

v1.0.140

  • Documentation improvements
Commits
  • 10102c4 Release 1.0.143
  • 2a5b853 Replace super::super with absolute path within crate
  • 447170b Merge pull request 1271 from mickvangelderen/mick/impl-from-str-for-map
  • ec190d6 Merge pull request #1264 from xlambein/master
  • 8be6647 Merge pull request #1268 from SOF3/compact-default
  • ba5b3cc Revert "Pin nightly toolchain used for miri job"
  • 1731167 Release 1.0.142
  • e51c814 Touch up PR 1265
  • 84abbdb Merge pull request #1265 from aatifsyed/master
  • 6843c36 Release 1.0.141
  • Additional commits viewable in compare view

Updates tabled from 0.18.0 to 0.20.0

Changelog

Sourced from tabled's changelog.

[0.20.0] - 2025-05-06

Added

  • Added Table::nohead function just like Table::new but with no header.
  • Added Table::with_capacity function just like Table::new but with an exact number of rows.

Changed

  • Changed with(Border) logic to set only outer border instead of border of all cells.
  • Made a number of refactorings of tabled::grid::dimension::* modules.
  • Made small optimization of Wrap::text and Truncate::text.
  • Made small optimization of Text::new.
  • Brought up to date benchmarks.
  • Renamed Columns::single into Columns::one.
  • Renamed Rows::single into Rows::one.
  • Moved back to fnv from ahash cause of WASM build.
  • Moved back to old Wrap::keep_words logic where we preserving all content.

Fixed

  • Fixed dependency testing_table inclusion (by @​klensy).
  • Fixed WASM build (by @​cptpiepmatz).
  • Fixed not properly working caching logic of TableOption::hint.

[0.19.0] - 2025-24-04

Added

  • Added tabled::assert module.
  • Added #[tabled(map)] macro.
  • Added derive::display::bool function.
  • Added derive::display::wrap and derive::display::truncate function.
  • Added Locator::value.
  • Added Table::get_dimension function.
  • Added ANSI link handling in Width::truncate.
  • Added Upper Title Case and lower title case options for rename_all.
  • Added no_std in testing_table.

Changed

  • Changed Reverse interface.
  • Changed Position interface.
  • Changed tabled::grid::dimension structures.
  • Changed IterTable interface.
  • Migrated ron to 0.10.
  • Renamed ColumnNames::default() into ColumnsNames::head().
  • Renamed BorderSpanCorrection into BorderCorrection::span().
  • Renamed Offset::Begin into Offset::Start.

... (truncated)

Commits

Updates uuid from 1.16.0 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

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 regex from 1.11.1 to 1.11.2

Changelog

Sourced from regex's changelog.

1.11.2 (2025-08-24)

This is a new patch release of regex with some minor fixes. A larger number of typo or lint fix patches were merged. Also, we now finally recommend using std::sync::LazyLock.

Improvements:

Bug fixes:

Commits

Updates criterion from 0.5.1 to 0.7.0

Changelog

Sourced from criterion's changelog.

[0.7.0] - 2025-07-25

  • Bump version of criterion-plot to align dependencies.

[0.6.0] - 2025-05-17

Changed

  • MSRV bumped to 1.80
  • The real_blackbox feature no longer has any impact. Criterion always uses std::hint::black_box() now. Users of criterion::black_box() should switch to std::hint::black_box().
  • clap dependency unpinned.

Fixed

  • gnuplot version is now correctly detected when using certain Windows binaries/configurations that used to fail

Added

  • Async benchmarking with Tokio may be done via a tokio::runtime::Handle, not only a tokio::runtime::Runtime
Commits

Updates reqwest from 0.12.15 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 thiserror from 2.0.12 to 2.0.16

Release notes

Sourced from thiserror's releases.

2.0.16

  • Add to "no-std" crates.io category (#429)

2.0.15

  • Prevent Error::provide API becoming unavailable from a future new compiler lint (#427)

2.0.14

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

2.0.13

  • Documentation improvements
<...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file minor rust Pull requests that update Rust code labels Sep 9, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-34c305996d branch from a506de8 to f15ff3d Compare September 9, 2025 15:19
Bumps the minor group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [kittycad](https://github.com/KittyCAD/kittycad.rs) | `0.3.36` | `0.3.41` |
| [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.47` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.27` | `0.23.4` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.42` |
| [cxx](https://github.com/dtolnay/cxx) | `1.0.153` | `1.0.180` |
| [data-encoding](https://github.com/ia0/data-encoding) | `2.8.0` | `2.9.0` |
| [enum-iterator](https://github.com/stephaneyfx/enum-iterator) | `2.1.0` | `2.3.0` |
| [parse-display](https://github.com/frozenlib/parse-display) | `0.9.1` | `0.10.0` |
| [parse-display-derive](https://github.com/frozenlib/parse-display) | `0.9.1` | `0.10.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.143` |
| [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.20.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.16.0` | `1.18.1` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.5.1` | `0.7.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.15` | `0.12.23` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `2.0.16` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.47.1` |
| [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.24.0` | `0.27.0` |
| [color-eyre](https://github.com/eyre-rs/eyre) | `0.6.3` | `0.6.5` |
| [image](https://github.com/image-rs/image) | `0.25.1` | `0.25.8` |



Updates `kittycad` from 0.3.36 to 0.3.41
- [Release notes](https://github.com/KittyCAD/kittycad.rs/releases)
- [Commits](KittyCAD/kittycad.rs@v0.3.36...v0.3.41)

Updates `clap` from 4.5.35 to 4.5.47
- [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.35...clap_complete-v4.5.47)

Updates `toml_edit` from 0.22.27 to 0.23.4
- [Commits](toml-rs/toml@v0.22.27...v0.23.4)

Updates `chrono` from 0.4.40 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.40...v0.4.42)

Updates `cxx` from 1.0.153 to 1.0.180
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@1.0.153...1.0.180)

Updates `data-encoding` from 2.8.0 to 2.9.0
- [Commits](ia0/data-encoding@v2.8.0...v2.9.0)

Updates `enum-iterator` from 2.1.0 to 2.3.0
- [Commits](stephaneyfx/enum-iterator@2.1.0...2.3.0)

Updates `enum-iterator-derive` from 1.4.0 to 1.5.0
- [Commits](stephaneyfx/enum-iterator@1.4.0...1.5.0)

Updates `parse-display` from 0.9.1 to 0.10.0
- [Changelog](https://github.com/frozenlib/parse-display/blob/master/CHANGELOG.md)
- [Commits](frozenlib/parse-display@v0.9.1...v0.10.0)

Updates `parse-display-derive` from 0.9.1 to 0.10.0
- [Changelog](https://github.com/frozenlib/parse-display/blob/master/CHANGELOG.md)
- [Commits](frozenlib/parse-display@v0.9.1...v0.10.0)

Updates `serde_json` from 1.0.139 to 1.0.143
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.139...v1.0.143)

Updates `tabled` from 0.18.0 to 0.20.0
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zhiburt/tabled/commits)

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

Updates `regex` from 1.11.1 to 1.11.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.11.1...1.11.2)

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 `reqwest` from 0.12.15 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.15...v0.12.23)

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

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

Updates `tokio-tungstenite` from 0.24.0 to 0.27.0
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.24.0...v0.27.0)

Updates `color-eyre` from 0.6.3 to 0.6.5
- [Commits](https://github.com/eyre-rs/eyre/compare/[email protected])

Updates `image` from 0.25.1 to 0.25.8
- [Changelog](https://github.com/image-rs/image/blob/v0.25.8/CHANGES.md)
- [Commits](image-rs/image@v0.25.1...v0.25.8)

---
updated-dependencies:
- dependency-name: kittycad
  dependency-version: 0.3.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: clap
  dependency-version: 4.5.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: toml_edit
  dependency-version: 0.23.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: cxx
  dependency-version: 1.0.180
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: data-encoding
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: enum-iterator
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: enum-iterator-derive
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: parse-display
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: parse-display-derive
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: serde_json
  dependency-version: 1.0.143
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tabled
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: uuid
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: regex
  dependency-version: 1.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: criterion
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: reqwest
  dependency-version: 0.12.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: thiserror
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio-tungstenite
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: color-eyre
  dependency-version: 0.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: image
  dependency-version: 0.25.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-34c305996d branch from f15ff3d to f595e1d Compare September 9, 2025 16:40
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

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

@dependabot dependabot bot closed this Sep 15, 2025
@dependabot dependabot bot deleted the dependabot/cargo/minor-34c305996d branch September 15, 2025 10:20
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 minor rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants