Skip to content
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

Bump the all group across 1 directory with 16 updates #4101

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

Bumps the all group with 16 updates in the / directory:

Package From To
async-trait 0.1.85 0.1.86
rand 0.8.5 0.9.0
rand_chacha 0.3.1 0.9.0
serde_json 1.0.137 1.0.138
sha2 0.9.9 0.10.8
syn 2.0.96 2.0.98
itertools 0.12.1 0.14.0
dyn-clone 1.0.17 1.0.18
async-tungstenite 0.13.1 0.28.2
downcast-rs 1.2.1 2.0.1
getrandom 0.2.15 0.3.1
rustls-pki-types 1.10.1 1.11.0
standback 0.2.17 0.4.4
toml_edit 0.22.22 0.22.23
tungstenite 0.13.0 0.24.0
uint 0.9.5 0.10.0

Updates async-trait from 0.1.85 to 0.1.86

Release notes

Sourced from async-trait's releases.

0.1.86

  • Documentation improvements
Commits
  • 46a70c0 Release 0.1.86
  • 0e43f29 Merge pull request #286 from dtolnay/dyncomp
  • c49cbcb Update 'object safe' -> 'dyn compatible' naming in tests
  • 87316f9 Merge pull request #285 from dtolnay/dyncomp
  • eb69fb3 Delete section on dyn compatibility of default implementations
  • ec9665a Update example error message in docs
  • f1b4d3c Update ui test suite to nightly-2025-02-01
  • b33a4b2 More precise gitignore patterns
  • 9d09210 Remove **/*.rs.bk from project-specific gitignore
  • 3f11674 Update ui test suite to nightly-2025-01-23
  • See full diff 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 rand_chacha from 0.3.1 to 0.9.0

Release notes

Sourced from rand_chacha's releases.

0.9.0

Upgrade guide

See https://rust-random.github.io/book/update-0.9.html

Changelog

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)

... (truncated)

Changelog

Sourced from rand_chacha'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 serde_json from 1.0.137 to 1.0.138

Release notes

Sourced from serde_json's releases.

v1.0.138

  • Documentation improvements
Commits
  • c916099 Release 1.0.138
  • dc29e48 Move BufReader to caller
  • 29122f9 Sort imports from PR 1237
  • d33c1b5 Merge pull request #1237 from JonathanBrouwer/master
  • 8c2d800 Add more warnings to apply buffering on docs of affected functions
  • 65bbd1a Fix example of from_reader not applying buffering when it should
  • 87f78da More precise gitignore patterns
  • 4134f11 Remove *.sw[po] from gitignore
  • c7626db Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates sha2 from 0.9.9 to 0.10.8

Commits

Updates syn from 2.0.96 to 2.0.98

Release notes

Sourced from syn's releases.

2.0.98

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#1847)

2.0.97

  • Documentation improvements
Commits
  • 71f3808 Release 2.0.98
  • f0c57ee Merge pull request #1847 from dtolnay/lifetimes
  • 4307f64 Allow lifetimes in function pointer return values
  • d15bdea Release 2.0.97
  • bf672a9 Merge pull request #1846 from dtolnay/surroundcfg
  • f0ee7e9 Fix missing doc cfg on <$Delimiter>::surround
  • e0e40cf Resolve unnecessary_semicolon pedantic clippy lint
  • 6ebd966 Resolve sliced_string_as_bytes clippy lint
  • a09b650 More precise gitignore patterns
  • 42601b9 Resolve needless_continue pedantic clippy lint
  • Additional commits viewable in compare view

Updates itertools from 0.12.1 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

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

Added

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

Changed

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

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)

... (truncated)

Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates dyn-clone from 1.0.17 to 1.0.18

Release notes

Sourced from dyn-clone's releases.

1.0.18

  • Documentation improvements
Commits
  • 551e400 Release 1.0.18
  • e605512 Merge pull request #29 from dtolnay/dyncomp
  • ec9d867 Update 'object safe' -> 'dyn compatible' wording
  • 187ff58 More precise gitignore patterns
  • 2ee12af Remove **/*.rs.bk from project-specific gitignore
  • 37a3878 Update ui test suite to nightly-2024-10-30
  • 115fb98 Fill in ignore reasons in all #[ignore] attributes
  • e6a94d1 Revert "Temporarily disable miri on doctests"
  • 297380e Update ui test suite to nightly-2024-03-31
  • 56081d5 Temporarily disable miri on doctests
  • Additional commits viewable in compare view

Updates async-tungstenite from 0.13.1 to 0.28.2

Changelog

Sourced from async-tungstenite's changelog.

[0.28.2] - 2024-12-15

Fixed

  • Add alloc feature to futures_task dependency to make sure futures-task::ArcWake is available.

[0.28.1] - 2024-12-10

Added

  • Added WebSocketStream::send() and make the Sink impl and futures_util dependency optional.

Changed

  • Update MSRV to 1.64
  • Revert workaround from 0.26.2 for futures_task::ArcWake, which is fixed in 0.3.31.

[0.28.0] - 2024-09-04

Changed

  • Update to tungstenite 0.24.
  • Update to rustls-native-certs 0.8.
  • Update MRSV to 1.63.

[0.27.0] - 2024-07-17

Changed

  • Update glib / gio dependencies to 0.20.

[0.26.2] - 2024-06-17

Fixed

  • Work around bug related to futures_task::ArcWake, which causes busy looping because of spurious waker "changes" caused by creating the same waker with different vtables.

[0.26.1] - 2024-06-06

Added

  • New url feature that maps to the corresponding feature from tungstenite and allows connecting directly to ws / wss URLs.

[0.26.0] - 2024-06-02

Changed

  • Update to tungstenite 0.23.
  • Don't include default features for various dependencies.

[0.25.1] - 2024-04-03

Fixed

  • Fix tokio support for async-tls.

[0.25.0] - 2024-02-09

Changed

  • Update to glib/gio 0.19.
  • Update to async-tls 0.13.

[0.24.0] - 2023-12-08

Changed

... (truncated)

Commits
  • eae2efa Release 0.28.2
  • 760b512 fix: waker_ref and ArcWake only available on alloc
  • 84dda8b Release 0.28.1
  • 1e0baad Use futures_task::ArcWake again now that it's fixed
  • b78f952 Add a simple WebSocketStream::send method to replace Sink trait usage
  • ce58323 Additional Documentation of IntoClientRequest on connect_async
  • ab43c0a Update MSRV CI to 1.63 too
  • caa4427 Update CHANGELOG.md for 0.28.0
  • a83de2d Update to rustls-native-certs 0.8
  • 39de6ce Release 0.28.0
  • Additional commits viewable in compare view

Updates downcast-rs from 1.2.1 to 2.0.1

Changelog

Sourced from downcast-rs's changelog.

2.0.1 - 2025-01-06

Change

2.0.0 - 2025-01-06

Added

  • Gated the sync/Arc downcasting functionality behind a new sync feature that is enabled by default.
  • Added a new DowncastSend trait to support downcasting to Box<Any + Send> and made DowncastSync extend this trait.
  • Added downcasting support to Box<Any + Send + Sync> to DowncastSync.

Change

  • Updated minimum supported rust version 1.56 to enforce the rustdoc::bare_urls lint (1.53) and switch to edition 2021 (1.56).
Commits
  • ed30509 Refine the trait and method documentation.
  • 4a140f9 Minor update to README to remove fully-qualified path for macro invocation.
  • 30b5bb2 Change crates document to use feature-conditional code instead of feature-con...
  • e7f6511 Update version to 2.0.0 and update CHANGELOG.md.
  • 7e801af Add an intermediate DowncastSend that DowncastSync extends.
  • 974f237 Updated to 2021 edition, added dyn to all trait objects, and changed min ve...
  • 26927b6 Specify edition and suppress dead-code warnings in compilation tests.
  • 430f220 Update README.md with cargo readme >! README.md.
  • 208ec3a Get rid of authors in Cargo.toml in favor of Github's built-in contributors ...
  • 9ad1dfb Make DowncastSync Optional
  • Additional commits viewable in compare view

Updates getrandom from 0.2.15 to 0.3.1

Changelog

Sourced from getrandom's changelog.

[0.3.1] - 2025-01-28

Fixed

  • Build error on Android #588

#588: rust-random/getrandom#588

[0.3.0] - 2025-01-25

Breaking Changes

Changed

  • Bump MSRV to 1.63 #542
  • Rename getrandom and getrandom_uninit functions to fill and fill_uninit respectively #532

Removed

  • wasm32-wasi target support (use wasm32-wasip1 or wasm32-wasip2 instead) #499
  • linux_disable_fallback, rdrand, js, test-in-browser, and custom crate features in favor of configuration flags #504
  • register_custom_getrandom! macro #504
  • Implementation of From<NonZeroU32> for Error and Error::code method #507
  • Internet Explorer 11 support #554
  • Target-specific assocciated Error constants #562

Changed

  • Use ProcessPrng on Windows 10 and up, and use RtlGenRandom on older Windows versions #415
  • Do not use locale-specific strerror_r for retrieving error code descriptions #440
  • Avoid assuming usize is the native word size in the rdrand backend #442
  • Do not read from errno when libc did not indicate error on Solaris #448
  • Switch from libpthread's mutex to futex on Linux and to nanosleep-based wait loop on other targets in the use_file backend #490
  • Do not retry on EAGAIN while polling /dev/random on Linux #522
  • Remove separate codepath for Node.js in the wasm_js backend (bumps minimum supported Node.js version to v19) #557
  • Use js_namespace in the wasm_js backend #559

Added

  • wasm32-wasip1 and wasm32-wasip2 support #499
  • getrandom_backend configuration flag for selection of opt-in backends #504
  • Error::new_custom method #507
  • rndr opt-in backend #512
  • Automatic MemorySanitizer support #521 #571
  • u32 and u64 functions for generating random values of the respective type #544
  • wasm32v1-none support in the wasm_js backend #560
  • wasm_js crate feature which allows users to enable the wasm_js opt-in backend #574

Fixed

  • NetBSD fallback code based on KERN_ARND #555

#415: rust-random/getrandom#415

... (truncated)

Commits

Updates rustls-pki-types from 1.10.1 to 1.11.0

Release notes

Sourced from rustls-pki-types's releases.

1.11.0

What's Changed

New Contributors

Full Changelog: rustls/pki-types@v/1.10.1...v/1.11.0

Commits

Bumps the all group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.85` | `0.1.86` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.0` |
| [rand_chacha](https://github.com/rust-random/rand) | `0.3.1` | `0.9.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.137` | `1.0.138` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.9.9` | `0.10.8` |
| [syn](https://github.com/dtolnay/syn) | `2.0.96` | `2.0.98` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.14.0` |
| [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.17` | `1.0.18` |
| [async-tungstenite](https://github.com/sdroege/async-tungstenite) | `0.13.1` | `0.28.2` |
| [downcast-rs](https://github.com/marcianx/downcast-rs) | `1.2.1` | `2.0.1` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.15` | `0.3.1` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.10.1` | `1.11.0` |
| [standback](https://github.com/jhpratt/standback) | `0.2.17` | `0.4.4` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.22` | `0.22.23` |
| [tungstenite](https://github.com/snapview/tungstenite-rs) | `0.13.0` | `0.24.0` |
| [uint](https://github.com/paritytech/parity-common) | `0.9.5` | `0.10.0` |



Updates `async-trait` from 0.1.85 to 0.1.86
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.85...0.1.86)

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 `rand_chacha` from 0.3.1 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@rand_chacha-0.3.1...0.9.0)

Updates `serde_json` from 1.0.137 to 1.0.138
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.137...v1.0.138)

Updates `sha2` from 0.9.9 to 0.10.8
- [Commits](RustCrypto/hashes@sha2-v0.9.9...sha2-v0.10.8)

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

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

Updates `dyn-clone` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/dyn-clone/releases)
- [Commits](dtolnay/dyn-clone@1.0.17...1.0.18)

Updates `async-tungstenite` from 0.13.1 to 0.28.2
- [Changelog](https://github.com/sdroege/async-tungstenite/blob/main/CHANGELOG.md)
- [Commits](sdroege/async-tungstenite@0.13.1...0.28.2)

Updates `downcast-rs` from 1.2.1 to 2.0.1
- [Changelog](https://github.com/marcianx/downcast-rs/blob/master/CHANGELOG.md)
- [Commits](marcianx/downcast-rs@v1.2.1...v2.0.1)

Updates `getrandom` from 0.2.15 to 0.3.1
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.15...v0.3.1)

Updates `rustls-pki-types` from 1.10.1 to 1.11.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.10.1...v/1.11.0)

Updates `standback` from 0.2.17 to 0.4.4
- [Release notes](https://github.com/jhpratt/standback/releases)
- [Commits](jhpratt/standback@v0.2.17...v0.4.4)

Updates `toml_edit` from 0.22.22 to 0.22.23
- [Commits](toml-rs/toml@v0.22.22...v0.22.23)

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

Updates `uint` from 0.9.5 to 0.10.0
- [Commits](paritytech/parity-common@uint-v0.9.5...uint-v0.10.0)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rand
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rand_chacha
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sha2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: dyn-clone
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: async-tungstenite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: downcast-rs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: getrandom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rustls-pki-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: standback
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: toml_edit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tungstenite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: uint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from ss-es as a code owner February 3, 2025 04:01
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 3, 2025

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

@dependabot dependabot bot closed this Feb 3, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-220bf48628 branch February 3, 2025 11:39
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