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 #4117

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
derive_more 1.0.0 2.0.1
rand 0.8.5 0.9.0
rand_chacha 0.3.1 0.9.0
sha2 0.9.9 0.10.8
toml 0.8.19 0.8.20
clap 4.5.27 4.5.28
itertools 0.12.1 0.14.0
async-tungstenite 0.13.1 0.28.2
bytes 1.9.0 1.10.0
data-encoding 2.7.0 2.8.0
downcast-rs 1.2.1 2.0.1
getrandom 0.2.15 0.3.1
standback 0.2.17 0.4.4
tungstenite 0.13.0 0.24.0
uint 0.9.5 0.10.0
derive_more-impl 1.0.0 2.0.1

Updates derive_more from 1.0.0 to 2.0.1

Release notes

Sourced from derive_more's releases.

2.0.1

API docs Changelog

2.0.0 - The first release is never perfect

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

New Contributors

Full Changelog: JelteF/derive_more@v1.0.0...v2.0.0

Changelog

Sourced from derive_more's changelog.

2.0.1 - 2025-02-03

Added

  • Add crate metadata for the Rust Playground. This makes sure that the Rust Playground will have all derive_more features available once selectors crate updates its derive_more version. (#445)

2.0.0 - 2025-02-03

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

0.99.19 - 2025-02-03

  • Add crate metadata for the Rust Playground.
Commits

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 sha2 from 0.9.9 to 0.10.8

Commits

Updates toml from 0.8.19 to 0.8.20

Commits

Updates clap from 4.5.27 to 4.5.28

Release notes

Sourced from clap's releases.

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Changelog

Sourced from clap's changelog.

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Commits

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 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 bytes from 1.9.0 to 1.10.0

Release notes

Sourced from bytes's releases.

Bytes v1.10.0

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Changelog

Sourced from bytes's changelog.

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Commits
  • e0f3a25 chore: prepare bytes v1.10.0 (#766)
  • 16fd473 Add feature to support platforms without atomic CAS (#467)
  • 71824b0 ci: test AArch64 and run tests instead of build in cross job (#763)
  • 7a87660 Use [lints] to address unexpected_cfgs lint (#762)
  • 3ab876f Try get methods for Buf trait (#753)
  • a1b1208 Disable test_bytes_vec_alloc test on miri (#755)
  • aae4969 Add specialized Buf::chunks_vectored for Take (#617)
  • 103d7bf Remove incorrect guarantee for chunks_vectored (#754)
  • 16cc574 Implement Buf::chunks_vectored for VecDeque\<u8> (#708)
  • 0e9e4fc Expand Buf tests (#747)
  • Additional commits viewable in compare view

Updates data-encoding from 2.7.0 to 2.8.0

Commits

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.

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

| Package | From | To |
| --- | --- | --- |
| [derive_more](https://github.com/JelteF/derive_more) | `1.0.0` | `2.0.1` |
| [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` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.9.9` | `0.10.8` |
| [toml](https://github.com/toml-rs/toml) | `0.8.19` | `0.8.20` |
| [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.28` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.14.0` |
| [async-tungstenite](https://github.com/sdroege/async-tungstenite) | `0.13.1` | `0.28.2` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.9.0` | `1.10.0` |
| [data-encoding](https://github.com/ia0/data-encoding) | `2.7.0` | `2.8.0` |
| [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` |
| [standback](https://github.com/jhpratt/standback) | `0.2.17` | `0.4.4` |
| [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` |
| [derive_more-impl](https://github.com/JelteF/derive_more) | `1.0.0` | `2.0.1` |



Updates `derive_more` from 1.0.0 to 2.0.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v1.0.0...v2.0.1)

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 `sha2` from 0.9.9 to 0.10.8
- [Commits](RustCrypto/hashes@sha2-v0.9.9...sha2-v0.10.8)

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

Updates `clap` from 4.5.27 to 4.5.28
- [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.27...clap_complete-v4.5.28)

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 `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 `bytes` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.9.0...v1.10.0)

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

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 `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 `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)

Updates `derive_more-impl` from 1.0.0 to 2.0.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v1.0.0...v2.0.1)

---
updated-dependencies:
- dependency-name: derive_more
  dependency-type: direct:production
  update-type: version-update:semver-major
  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: sha2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: clap
  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: async-tungstenite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: data-encoding
  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: standback
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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
- dependency-name: derive_more-impl
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from ss-es as a code owner February 10, 2025 03:18
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 10, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 11, 2025

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

@dependabot dependabot bot closed this Feb 11, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-d533a5e2d3 branch February 11, 2025 03:18
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