Skip to content

Bump the cargo-deps group across 1 directory with 39 updates#3888

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/cargo-deps-3461d5e08b
Closed

Bump the cargo-deps group across 1 directory with 39 updates#3888
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/cargo-deps-3461d5e08b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 8, 2025

Bumps the cargo-deps group with 39 updates in the / directory:

Package From To
indexmap 2.8.0 2.10.0
slab 0.4.9 0.4.10
thiserror 1.0.69 2.0.12
implicit-clone 0.5.0 0.6.0
base64ct 1.6.0 1.8.0
bincode 1.3.3 2.0.1
rustversion 1.0.20 1.0.21
tokio 1.43.1 1.47.1
trybuild 1.0.104 1.0.110
proc-macro2 1.0.94 1.0.95
syn 2.0.98 2.0.104
once_cell 1.20.3 1.21.3
prettyplease 0.2.29 0.2.36
divan 0.1.17 0.1.21
rand 0.8.5 0.9.0
average 0.15.1 0.16.0
tabled 0.18.0 0.20.0
indicatif 0.17.11 0.18.0
serde_json 1.0.139 1.0.142
clap 4.5.30 4.5.43
reqwest 0.12.12 0.12.15
toml 0.8.20 0.9.5
anyhow 1.0.96 1.0.98
chrono 0.4.39 0.4.41
git2 0.20.0 0.20.2
strum 0.27.1 0.27.2
semver 1.0.25 1.0.26
strum_macros 0.27.1 0.27.2
log 0.4.26 0.4.27
fake 4.0.0 4.4.0
time 0.3.37 0.3.41
uuid 1.14.0 1.17.0
bytes 1.10.0 1.10.1
warp 0.3.7 0.4.1
hyper-util 0.1.10 0.1.16
axum 0.8.1 0.8.4
tower-http 0.6.2 0.6.6
env_logger 0.11.6 0.11.8
postcard 1.1.1 1.1.3

Updates indexmap from 2.8.0 to 2.10.0

Changelog

Sourced from indexmap's changelog.

2.10.0 (2025-06-26)

  • Added extract_if methods to IndexMap and IndexSet, similar to the methods for HashMap and HashSet with ranges like Vec::extract_if.
  • Added more #[track_caller] annotations to functions that may panic.

2.9.0 (2025-04-04)

  • Added a get_disjoint_mut method to IndexMap, matching Rust 1.86's HashMap method.
  • Added a get_disjoint_indices_mut method to IndexMap and map::Slice, matching Rust 1.86's get_disjoint_mut method on slices.
  • Deprecated the borsh feature in favor of their own indexmap feature, solving a cyclic dependency that occurred via borsh-derive.
Commits
  • 91dbcc5 Merge pull request #399 from cuviper/release-2.10.0
  • 67a5a71 Release 2.10.0
  • 37e519a Merge pull request #308 from cuviper/extract_if
  • 4d7618f Merge pull request #398 from cuviper/bench-deps
  • 68201eb Drop lazy_static for LazyLock
  • eaaaa56 Switch to fastrand for bench shuffling
  • b19d84e Fix clippy::needless_lifetimes
  • 4f62778 impl FusedIterator for ExtractIf
  • e09eaaf Document and track extract_if panics
  • a8d7dc5 Add range support to extract_if
  • Additional commits viewable in compare view

Updates slab from 0.4.9 to 0.4.10

Release notes

Sourced from slab's releases.

v0.4.10

  • Add Slab::get_disjoint_mut (#149)
  • Drop build script and autocfg dependency (#150)
  • Fix redundant import warning in no_std builds (#143)
  • Fix clippy::needless_lifetimes warning (#147)
  • Internal CI improvements (#141, #146)
Changelog

Sourced from slab's changelog.

0.4.10 (June 15, 2025)

  • Add Slab::get_disjoint_mut (#149)
  • Drop build script and autocfg dependency (#150)
  • Fix redundant import warning in no_std builds (#143)
  • Fix clippy::needless_lifetimes warning (#147)
  • Internal CI improvements (#141, #146)
Commits

Updates thiserror from 1.0.69 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,

... (truncated)

Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • Additional commits viewable in compare view

Updates implicit-clone from 0.5.0 to 0.6.0

Commits

Updates base64ct from 1.6.0 to 1.8.0

Commits

Updates bincode from 1.3.3 to 2.0.1

Release notes

Sourced from bincode's releases.

v2.0.1

What's Changed

New Contributors

Full Changelog: bincode-org/bincode@v2.0.0...v2.0.1

v2.0.0

Stable! Finally! After 4 years in development! Many changes have made it in since rc.3, including (unfortunately) some last minute breaking changes. But documentation has been cleaned up to a point where we finally feel comfortable committing to things as they are.

If you haven't been following along with the 2.0 changes here is a brief overview

  • Completely rewritten API decoupled from serde
  • no_std support
  • Official format specification
  • Default configuration changes
  • Increase MSRV to 1.85.0

What's Changed since 1.3.1

... (truncated)

Commits

Updates rustversion from 1.0.20 to 1.0.21

Release notes

Sourced from rustversion's releases.

1.0.21

  • Support -Zfmt-debug=none (#61)
Commits

Updates tokio from 1.43.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 trybuild from 1.0.104 to 1.0.110

Release notes

Sourced from trybuild's releases.

1.0.110

  • Fix permissions_set_readonly_false warning (#312)

1.0.109

1.0.108

  • More right-aligned line number fixes (#309)

1.0.107

1.0.106

  • Update toml dependency to 0.9 (#306)

1.0.105

Commits

Updates proc-macro2 from 1.0.94 to 1.0.95

Release notes

Sourced from proc-macro2's releases.

1.0.95

  • Update semver-exempt API under RUSTFLAGS=--cfg=procmacro2_semver_exempt to that of nightly-2025-04-16 (#497)
Commits
  • 24bbf16 Release 1.0.95
  • 835c5bd Merge pull request #497 from dtolnay/nosourcefile
  • 7bc363c Update semver-exempt API to nightly-2025-04-16
  • b867aa7 Merge pull request #496 from PaulGrandperrin/master
  • c605e8e Revert "Merge pull request #495 from dtolnay/fuzzlld"
  • 1993cd3 Merge pull request #495 from dtolnay/fuzzlld
  • cfdb567 Link to honggfuzz-rs issue
  • b09a5b0 Work around cargo-hfuzz nostart-stop-gc gold link failure
  • See full diff in compare view

Updates syn from 2.0.98 to 2.0.104

Release notes

Sourced from syn's releases.

2.0.104

  • Disallow attributes on range expression (#1872)

2.0.103

  • Insert parentheses around binary operation with attribute (#1871)

2.0.102

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#1869)

2.0.101

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#1861)

2.0.100

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#1852)

2.0.99

  • Documentation improvements
Commits
  • 2283a98 Release 2.0.104
  • d745687 Merge pull request #1872 from dtolnay/attrrange
  • 350a4ab Disallow attributes on range expression
  • da96f95 Add test of attributes on range
  • 7a79818 Update test suite to nightly-2025-06-19
  • 85d4276 Release 2.0.103
  • 6f7b0f3 Merge pull request #1871 from dtolnay/binaryattr
  • 89f88fa Correctly track bailouts in parenthesized binary expressions
  • 0e07372 Add binary operator attribute bailout test
  • ca8d876 Insert parentheses around binary operation with attribute
  • Additional commits viewable in compare view

Updates once_cell from 1.20.3 to 1.21.3

Changelog

Sourced from once_cell's changelog.

1.21.3

  • Outline more initialization in race: #284, #285.

1.21.2

  • Relax success ordering from AcqRel to Release in race: #278.

1.21.1

  • Reduce MSRV to 1.65: #277.

1.21.0

  • Outline initialization in race: #273.
  • Add OnceNonZereUsize::get_unchecked: #274.
  • Add OnceBox::clone and OnceBox::with_value: #275.
  • Increase MSRV to 1.70

1.20.2

  • Remove portable_atomic from Cargo.lock if it is not, in fact, used: #267 This is a work-around for this cargo bug: rust-lang/cargo#10801.

1.20.1

  • Allow using race module using just portable_atomic, without critical_section and provide better error messages on targets without atomic CAS instruction, #265.

1.19.0

  • Use portable-atomic instead of atomic-polyfill, #251.

1.18.0

  • MSRV is updated to 1.60.0 to take advantage of dep: syntax for cargo features, removing "implementation details" from publicly visible surface.

1.17.2

  • Avoid unnecessary synchronization in Lazy::{force,deref}_mut(), #231.

1.17.1

1.17.0

  • Add race::OnceRef for storing a &'a T.

... (truncated)

Commits
  • 29e3d93 Merge pull request #286 from briansmith/b/once-ref-dry
  • a206950 Prepare for 1.21.3 release.
  • 17d4a9b DRY race::OnceRef::{get_or_try_init, set}.
  • 01b1d56 Merge pull request #285 from briansmith/b/once-ref-cold
  • a851cc4 Mark initialization of OnceRef::get_or_try_init cold.
  • 2447a93 Merge pull request #281 from briansmith/b/init-inner
  • c294d64 Merge pull request #280 from briansmith/b/self
  • 5f0fdd4 Merge pull request #283 from briansmith/b/cast_mut
  • 899e319 Merge pull request #284 from briansmith/b/dry-get
  • 90da60b Mark initialization of OnceBox::get_or_try_init cold.
  • Additional commits viewable in compare view

Updates prettyplease from 0.2.29 to 0.2.36

Release notes

Sourced from prettyplease's releases.

0.2.36

0.2.35

  • Parenthesize for attributes on range expression (#119)

0.2.34

  • Insert parentheses around binary operation with attribute (#117)

0.2.33

  • Improve macro token spacing after $crate (#116)

0.2.32

0.2.31

  • Format multiple array elements on the same line (#108)

0.2.30

  • Documentation improvements
Commits

Updates divan from 0.1.17 to 0.1.21

Changelog

Sourced from divan's changelog.

[0.1.21] - 2025-04-09

Fixed

  • Divan::skip_exact behaved incorrectly in v0.1.19.

Changed

  • Improved handling of internal code around filters and those responsible for sacking the people who have just been sacked have been sacked.

[0.1.20] - 2025-04-09

Fixed

  • Divan::skip_regex accidentally dropped regex_lite::Regex and behaved incorrectly in v0.1.19.

[0.1.19] - 2025-04-09

Fixed

  • [cargo-nextest] no longer skips benchmarks with argument parameters (#75).

Changed

  • Organized positive and negative filters into a split buffer.

[0.1.18] - 2025-04-05

Added

  • Support for [cargo-nextest] running benchmarks as tests.

  • [prelude] module for simplifying imports of [#[bench]][bench_attr], [#[bench_group]][bench_group_attr], [black_box], [black_box_drop], [AllocProfiler], [Bencher], and [Divan].

  • Support wasi and emscripten targets.

Commits
  • 52f9d49 Release v0.1.21
  • 5afb095 Fix broken Divan::skip_exact
  • e4d112c Release v0.1.20
  • 1d74108 Fix broken Divan::skip_regex
  • 58988fc Release v0.1.19
  • f43a742 docs: Change "changes" to "changed" in changelog
  • f348769 docs: List most recent changes in changelog
  • 07111fb Abstract filters into FilterSet
  • 2c865cd docs: Add link to prelude module in changelog
  • 9075b9e fix nextest support for parameterized benches
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.9.0

Changelog

Sourced from rand's changelog.

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 8, 2025
github-actions[bot]
github-actions bot previously approved these changes Aug 8, 2025
@github-actions
Copy link

github-actions bot commented Aug 8, 2025

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.462 ns      │ 3.731 ns      │ 3.704 ns      │ 3.373 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.434 ns      │ 2.603 ns      │ 2.437 ns      │ 2.446 ns      │ 100     │ 1000000000

Bumps the cargo-deps group with 39 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.8.0` | `2.10.0` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.9` | `0.4.10` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.12` |
| [implicit-clone](https://github.com/yewstack/implicit-clone) | `0.5.0` | `0.6.0` |
| [base64ct](https://github.com/RustCrypto/formats) | `1.6.0` | `1.8.0` |
| [bincode](https://github.com/bincode-org/bincode) | `1.3.3` | `2.0.1` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.20` | `1.0.21` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.1` | `1.47.1` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.104` | `1.0.110` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |
| [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.104` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.3` | `1.21.3` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.29` | `0.2.36` |
| [divan](https://github.com/nvzqz/divan) | `0.1.17` | `0.1.21` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.0` |
| [average](https://github.com/vks/average) | `0.15.1` | `0.16.0` |
| [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.20.0` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.11` | `0.18.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.142` |
| [clap](https://github.com/clap-rs/clap) | `4.5.30` | `4.5.43` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.15` |
| [toml](https://github.com/toml-rs/toml) | `0.8.20` | `0.9.5` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.98` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.41` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.20.0` | `0.20.2` |
| [strum](https://github.com/Peternator7/strum) | `0.27.1` | `0.27.2` |
| [semver](https://github.com/dtolnay/semver) | `1.0.25` | `1.0.26` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.27.1` | `0.27.2` |
| [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.27` |
| [fake](https://github.com/cksac/fake-rs) | `4.0.0` | `4.4.0` |
| [time](https://github.com/time-rs/time) | `0.3.37` | `0.3.41` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.14.0` | `1.17.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.0` | `1.10.1` |
| [warp](https://github.com/seanmonstar/warp) | `0.3.7` | `0.4.1` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.10` | `0.1.16` |
| [axum](https://github.com/tokio-rs/axum) | `0.8.1` | `0.8.4` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.6.2` | `0.6.6` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.6` | `0.11.8` |
| [postcard](https://github.com/jamesmunns/postcard) | `1.1.1` | `1.1.3` |



Updates `indexmap` from 2.8.0 to 2.10.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.8.0...2.10.0)

Updates `slab` from 0.4.9 to 0.4.10
- [Release notes](https://github.com/tokio-rs/slab/releases)
- [Changelog](https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/slab@v0.4.9...v0.4.10)

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

Updates `implicit-clone` from 0.5.0 to 0.6.0
- [Commits](https://github.com/yewstack/implicit-clone/commits/v0.6.0)

Updates `base64ct` from 1.6.0 to 1.8.0
- [Commits](RustCrypto/formats@base64ct/v1.6.0...base64ct/v1.8.0)

Updates `bincode` from 1.3.3 to 2.0.1
- [Release notes](https://github.com/bincode-org/bincode/releases)
- [Commits](bincode-org/bincode@v1.3.3...v2.0.1)

Updates `rustversion` from 1.0.20 to 1.0.21
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.20...1.0.21)

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

Updates `trybuild` from 1.0.104 to 1.0.110
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.104...1.0.110)

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

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

Updates `once_cell` from 1.20.3 to 1.21.3
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.3...v1.21.3)

Updates `prettyplease` from 0.2.29 to 0.2.36
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.29...0.2.36)

Updates `divan` from 0.1.17 to 0.1.21
- [Changelog](https://github.com/nvzqz/divan/blob/main/CHANGELOG.md)
- [Commits](nvzqz/divan@v0.1.17...v0.1.21)

Updates `rand` from 0.8.5 to 0.9.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.9.0)

Updates `average` from 0.15.1 to 0.16.0
- [Commits](https://github.com/vks/average/commits)

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 `indicatif` from 0.17.11 to 0.18.0
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.11...0.18.0)

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

Updates `clap` from 4.5.30 to 4.5.43
- [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.30...clap_complete-v4.5.43)

Updates `reqwest` from 0.12.12 to 0.12.15
- [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.15)

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

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

Updates `chrono` from 0.4.39 to 0.4.41
- [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.41)

Updates `git2` from 0.20.0 to 0.20.2
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/git2-rs@git2-0.20.0...git2-0.20.2)

Updates `strum` from 0.27.1 to 0.27.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.1...v0.27.2)

Updates `semver` from 1.0.25 to 1.0.26
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.25...1.0.26)

Updates `strum_macros` from 0.27.1 to 0.27.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.27.1...v0.27.2)

Updates `log` from 0.4.26 to 0.4.27
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.26...0.4.27)

Updates `fake` from 4.0.0 to 4.4.0
- [Release notes](https://github.com/cksac/fake-rs/releases)
- [Commits](https://github.com/cksac/fake-rs/commits/v4.4.0)

Updates `time` from 0.3.37 to 0.3.41
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.37...v0.3.41)

Updates `uuid` from 1.14.0 to 1.17.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.14.0...v1.17.0)

Updates `bytes` from 1.10.0 to 1.10.1
- [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.0...v1.10.1)

Updates `warp` from 0.3.7 to 0.4.1
- [Release notes](https://github.com/seanmonstar/warp/releases)
- [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/warp@v0.3.7...v0.4.1)

Updates `hyper-util` from 0.1.10 to 0.1.16
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.10...v0.1.16)

Updates `axum` from 0.8.1 to 0.8.4
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/commits/axum-v0.8.4)

Updates `tower-http` from 0.6.2 to 0.6.6
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.6.2...tower-http-0.6.6)

Updates `env_logger` from 0.11.6 to 0.11.8
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.6...v0.11.8)

Updates `postcard` from 1.1.1 to 1.1.3
- [Release notes](https://github.com/jamesmunns/postcard/releases)
- [Commits](jamesmunns/postcard@postcard/v1.1.1...postcard/v1.1.3)

---
updated-dependencies:
- dependency-name: indexmap
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: slab
  dependency-version: 0.4.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: thiserror
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
- dependency-name: implicit-clone
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: base64ct
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: bincode
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
- dependency-name: rustversion
  dependency-version: 1.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: trybuild
  dependency-version: 1.0.110
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: syn
  dependency-version: 2.0.104
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: once_cell
  dependency-version: 1.21.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: prettyplease
  dependency-version: 0.2.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: divan
  dependency-version: 0.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rand
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: average
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: tabled
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: indicatif
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: serde_json
  dependency-version: 1.0.142
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-version: 4.5.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: reqwest
  dependency-version: 0.12.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: toml
  dependency-version: 0.9.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: anyhow
  dependency-version: 1.0.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: chrono
  dependency-version: 0.4.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: git2
  dependency-version: 0.20.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: strum
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: semver
  dependency-version: 1.0.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: strum_macros
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: log
  dependency-version: 0.4.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: fake
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: time
  dependency-version: 0.3.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: uuid
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: bytes
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: warp
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: hyper-util
  dependency-version: 0.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: axum
  dependency-version: 0.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: tower-http
  dependency-version: 0.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: env_logger
  dependency-version: 0.11.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: postcard
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-deps-3461d5e08b branch from a94a51d to 43d5824 Compare August 9, 2025 20:11
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 10, 2025

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

@dependabot dependabot bot closed this Aug 10, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-3461d5e08b branch August 10, 2025 01:42
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