Skip to content

Bump the cargo-deps group across 1 directory with 27 updates #3844

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 18, 2025

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

Package From To
indexmap 2.8.0 2.9.0
implicit-clone 0.5.0 0.6.0
base64ct 1.6.0 1.7.3
bincode 1.3.3 2.0.1
tokio 1.43.1 1.44.2
proc-macro2 1.0.94 1.0.95
syn 2.0.98 2.0.100
once_cell 1.20.3 1.21.3
prettyplease 0.2.29 0.2.32
divan 0.1.17 0.1.21
rand 0.8.5 0.9.0
average 0.15.1 0.16.0
serde_json 1.0.139 1.0.140
clap 4.5.30 4.5.36
reqwest 0.12.12 0.12.15
anyhow 1.0.96 1.0.98
chrono 0.4.39 0.4.40
git2 0.20.0 0.20.1
semver 1.0.25 1.0.26
log 0.4.26 0.4.27
fake 4.0.0 4.3.0
time 0.3.37 0.3.41
uuid 1.14.0 1.16.0
bytes 1.10.0 1.10.1
hyper-util 0.1.10 0.1.11
axum 0.8.1 0.8.3
env_logger 0.11.6 0.11.8

Updates indexmap from 2.8.0 to 2.9.0

Changelog

Sourced from indexmap's changelog.

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 occured via borsh-derive.
Commits
  • 1818d41 Merge pull request #387 from cuviper/release-2.9.0
  • 9f49983 Release 2.9.0
  • 582a90f Merge pull request #386 from cuviper/de-borsh
  • 9011739 Deprecate the "borsh" feature
  • 0a836e8 Merge pull request #238 from NiklasJonsson/get_many_mut
  • 434d7ac Avoid let-else for MSRV's sake
  • 5be552d Implement additional suggestions from review
  • 4e1d8ce Address review feedback
  • 5aec9ec Implement get_disjoint_mut for arrays of keys
  • d10de30 Merge pull request #385 from iajoiner/docs/macros
  • 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.7.3

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 tokio from 1.43.1 to 1.44.2

Release notes

Sourced from tokio's releases.

Tokio v1.44.2

This release fixes a soundness issue in the broadcast channel. The channel accepts values that are Send but !Sync. Previously, the channel called clone() on these values without synchronizing. This release fixes the channel by synchronizing calls to .clone() (Thanks Austin Bonander for finding and reporting the issue).

Fixed

  • sync: synchronize clone() call in broadcast channel (#7232)

#7232: tokio-rs/tokio#7232

Tokio v1.44.1

1.44.1 (March 13th, 2025)

Fixed

  • rt: skip defer queue in block_in_place context (#7216)

#7216: tokio-rs/tokio#7216

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

... (truncated)

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

Release notes

Sourced from syn's releases.

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
  • 5357c8f Release 2.0.100
  • 78a1efb Merge pull request #1852 from dtolnay/tokenstream
  • 01a9e6d Visit TokenStream in generated syntax tree traversals
  • 22bd069 Bypass instantiating Span-specific visit functions
  • bf0a11d Generalize proc_macro2 path to other terminal types
  • c38857a Simplify reference-to-references
  • 90381ea Sort TERMINAL_TYPES alphabetically
  • 6a860b0 Update test suite to nightly-2025-03-08
  • aed58d1 Update test suite to nightly-2025-03-05
  • 4552057 Release 2.0.99
  • 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.32

Release notes

Sourced from prettyplease's releases.

0.2.32

0.2.31

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

0.2.30

  • Documentation improvements
Commits
  • 81c6daa Release 0.2.32
  • 9e7423e Reorder block comment logic to consider bytes in order
  • 3cf820b Merge pull request #113 from arkeet/block-comment-slash
  • 7c441be Forbid block comments that end in a slash.
  • 3ee5818 Release 0.2.31
  • 9f3d76f Merge pull request #108 from dtolnay/arraywrap
  • 69da125 Multiple array elements on the same line
  • 1effcba Merge pull request #107 from dtolnay/vecarray
  • 9ecdb58 Retain punctuated structure of VecArray
  • 425a6d0 Merge pull request #106 from dtolnay/badoffset
  • Additional commits viewable in compare view

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 StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

... (truncated)

Commits

Updates average from 0.15.1 to 0.16.0

Commits

Updates serde_json from 1.0.139 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements
Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • See full diff in compare view

Updates clap from 4.5.30 to 4.5.36

Release notes

Sourced from clap's releases.

v4.5.36

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

v4.5.31

[4.5.31] - 2025-02-24

Features

... (truncated)

Changelog

Sourced from clap's changelog.

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

[4.5.34] - 2025-03-27

Fixes

  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

[4.5.33] - 2025-03-26

Fixes

  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark

[4.5.31] - 2025-02-24

Features

  • Add ValueParserFactory for Saturating<T>
Commits
  • 7a6475e chore: Release
  • 0266c41 docs: Update changelog
  • 6ec0b43 Merge pull request #5791 from okapia/zsh-default-fallback
  • e40168c fix(zsh): Use _default as zsh completion fallback
  • 55a18f5 chore: Release
  • 3b05635 fix(complete): Ensure new enough clap is used
  • 5d2cdac chore: Release
  • f1c10eb docs: Update changelog
  • a4d1a7f chore(ci): Take a break from template updates
  • e95ed39 Merge pull request #5775 from vivienm/master
  • Additional commits viewable in compare view

Updates reqwest from 0.12.12 to 0.12.15

Release notes

Sourced from reqwest's releases.

v0.12.15

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.14...v0.12.15

v0.12.14

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.13...v0.12.14

v0.12.13

What's Changed

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.

New Contributors

Thanks!

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.15

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.
Commits

Updates anyhow from 1.0.96 to 1.0.98

Release notes

Sourced from anyhow's releases.

1.0.98

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

| Package | From | To |
| --- | --- | --- |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.8.0` | `2.9.0` |
| [implicit-clone](https://github.com/yewstack/implicit-clone) | `0.5.0` | `0.6.0` |
| [base64ct](https://github.com/RustCrypto/formats) | `1.6.0` | `1.7.3` |
| [bincode](https://github.com/bincode-org/bincode) | `1.3.3` | `2.0.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.1` | `1.44.2` |
| [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.100` |
| [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.32` |
| [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` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.140` |
| [clap](https://github.com/clap-rs/clap) | `4.5.30` | `4.5.36` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.15` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.98` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.39` | `0.4.40` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.20.0` | `0.20.1` |
| [semver](https://github.com/dtolnay/semver) | `1.0.25` | `1.0.26` |
| [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.27` |
| [fake](https://github.com/cksac/fake-rs) | `4.0.0` | `4.3.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.16.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.0` | `1.10.1` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.10` | `0.1.11` |
| [axum](https://github.com/tokio-rs/axum) | `0.8.1` | `0.8.3` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.6` | `0.11.8` |



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

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.7.3
- [Commits](https://github.com/RustCrypto/formats/commits)

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 `tokio` from 1.43.1 to 1.44.2
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.43.1...tokio-1.44.2)

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.100
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.98...2.0.100)

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.32
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.29...0.2.32)

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 `serde_json` from 1.0.139 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.139...v1.0.140)

Updates `clap` from 4.5.30 to 4.5.36
- [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.36)

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 `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.40
- [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.40)

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

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 `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.3.0
- [Release notes](https://github.com/cksac/fake-rs/releases)
- [Changelog](https://github.com/cksac/fake-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/cksac/fake-rs/commits)

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.16.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.14.0...v1.16.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 `hyper-util` from 0.1.10 to 0.1.11
- [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.11)

Updates `axum` from 0.8.1 to 0.8.3
- [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.3)

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)

---
updated-dependencies:
- dependency-name: indexmap
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.7.3
  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: tokio
  dependency-version: 1.44.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.100
  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.32
  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: serde_json
  dependency-version: 1.0.140
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-version: 4.5.36
  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: 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.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: git2
  dependency-version: 0.20.1
  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: 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.3.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.16.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: hyper-util
  dependency-version: 0.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: axum
  dependency-version: 0.8.3
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 18, 2025
Copy link

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)

✅ None of the examples has changed their size significantly.

Copy link

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.124 ns      │ 3.49 ns       │ 2.128 ns      │ 2.225 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.124 ns      │ 3.374 ns      │ 2.127 ns      │ 2.166 ns      │ 100     │ 1000000000

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 25, 2025

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

@dependabot dependabot bot closed this Apr 25, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-d0fe638428 branch April 25, 2025 03:47
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