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

rust: bump the rust group across 1 directory with 19 updates #5979

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2024

Bumps the rust group with 19 updates in the / directory:

Package From To
serde 1.0.210 1.0.216
serde_json 1.0.128 1.0.133
anyhow 1.0.89 1.0.94
thiserror 1.0.64 2.0.8
mbedtls 0.12.3 0.13.0
chrono 0.4.38 0.4.39
tokio 1.40.0 1.42.0
tendermint 0.39.1 0.40.0
tendermint-proto 0.39.1 0.40.0
tendermint-light-client 0.39.1 0.40.0
tendermint-rpc 0.39.1 0.40.0
arbitrary 1.3.2 1.4.1
impl-trait-for-tuples 0.2.2 0.2.3
rsa 0.9.6 0.9.7
libc 0.2.159 0.2.168
tempfile 3.13.0 3.14.0
tendermint-testgen 0.39.1 0.40.0
clap 4.5.20 4.5.23
rustls 0.23.18 0.23.20

Updates serde from 1.0.210 to 1.0.216

Release notes

Sourced from serde's releases.

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • 9497463 Mark all generated trait impls as #[automatically_derived]
  • 46e9ecf Merge pull request #2866 from tdittr/mark-visitors-as-generated
  • e9c399c Mark generated impl de::Visitor blocks as #[automatically_derived]
  • b9dbfcb Switch out fnv in favor of foldhash in test
  • c270e27 Use BuildHasher instead of Hasher in collection macros
  • 0307f60 Resolve question_mark clippy lint in build script
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • Additional commits viewable in compare view

Updates serde_json from 1.0.128 to 1.0.133

Release notes

Sourced from serde_json's releases.

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)

v1.0.132

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#1206)

v1.0.131

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#1135, thanks @​swlynch99)

v1.0.130

  • Support converting and deserializing Number from i128 and u128 (#1141, thanks @​druide)

v1.0.129

Commits
  • 0903de4 Release 1.0.133
  • 2b65ca0 Merge pull request #1215 from dtolnay/fromarray
  • 4e5f985 Implement From<[T; N]> for Value
  • 2ccb5b6 Disable question_mark clippy lint in lexical test
  • a11f5f2 Resolve unnecessary_map_or clippy lints
  • 07f280a Wrap PR 1213 to 80 columns
  • 75ed447 Merge pull request #1213 from djmitche/safety-comment
  • 73011c0 Add a safety comment to unsafe block
  • be2198a Prevent upload-artifact step from causing CI failure
  • 7cce517 Raise minimum version for preserve_order feature to Rust 1.65
  • Additional commits viewable in compare view

Updates anyhow from 1.0.89 to 1.0.94

Release notes

Sourced from anyhow's releases.

1.0.94

  • Documentation improvements

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements
Commits
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • 8852dc3 Prevent upload-artifact from causing CI failure
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 2.0.8

Release notes

Sourced from thiserror's releases.

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,
    }
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]
    #[error("{thing:o}", thing = "...")]
    pub struct Error<T> {
        thing: T,

... (truncated)

Commits
  • 2bd2982 Release 2.0.8
  • a7de3ab Merge pull request #399 from dtolnay/respan
  • f1243a0 Fix spans on macro-generated bindings and format variables
  • 6a07345 Add regression test for issue 398
  • 9c0f2d2 Release 2.0.7
  • 2deec96 Merge pull request 397 from zertosh/from_allow_expect
  • 100d916 Avoid associating #[from] with lint allow
  • 485c2b7 Reword spurious errors comment
  • 2075e87 Release 2.0.6
  • e9a9085 Merge pull request #396 from dtolnay/deprecatedfrom
  • Additional commits viewable in compare view

Updates mbedtls from 0.12.3 to 0.13.0

Commits
  • 9b0dbdb Porting combined errors from mbedtls changes (#372)
  • 0e5891d Merge pull request #371 from irajtaghlidi/bazel-compatible
  • f43ba5d deleting mbedtls_include variable
  • f96fefe Windows compatibility
  • 7e57229 Linking C static libs for mbedtls_printf
  • 3244473 set static linking
  • 0001b6c calculate include path from out_dir
  • c1554d6 removing linking native libs in platform-support crate
  • 5da749c Handle multi-valued target_family (#362)
  • 7116abe Adding CrateId Metadata Hash method for Bazel (#365)
  • Additional commits viewable in compare view

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates tokio from 1.40.0 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

  • metrics: stabilize global_queue_depth (#6854, #6918)
  • net: add conversions for unix SocketAddr (#6868)
  • sync: add watch::Sender::sender_count (#6836)
  • sync: add mpsc::Receiver::blocking_recv_many (#6867)

... (truncated)

Commits

Updates tendermint from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-proto from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-proto's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-proto's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-light-client from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-light-client's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-light-client's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-rpc from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-rpc's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-rpc's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates arbitrary from 1.3.2 to 1.4.1

Changelog

Sourced from arbitrary's changelog.

Unreleased

Released YYYY-MM-DD.

Added

  • TODO (or remove section if none)

Changed

  • TODO (or remove section if none)

Deprecated

  • TODO (or remove section if none)

Removed

  • TODO (or remove section if none)

Fixed

  • TODO (or remove section if none)

Security

  • TODO (or remove section if none)

1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

... (truncated)

Commits
  • c22d7c8 Arbitrary-derive 1.4.1
  • 690db06 Merge pull request #204 from djc/msrv
  • 6cbaf48 Merge pull request #205 from Manishearth/fq-result
  • de2becf Use fully qualified path for Result when generated by macro
  • 4f5967b Bump version for release
  • a5dfc7e Check stated MSRV in CI
  • da62b03 Add lifetime bound for trait impl as required on older toolchains
  • f643527 Use std::error::Error for compatibility with older toolchains
  • 5b86c44 Bump to 1.4.0
  • 1cc0e46 Merge pull request #185 from sosthene-nitrokey/wide-recursive
  • Additional commits viewable in compare view

Updates impl-trait-for-tuples from 0.2.2 to 0.2.3

Release notes

Sourced from impl-trait-for-tuples's releases.

v0.2.3

What's Changed

New Contributors

Full Changelog: bkchr/impl-trait-for-tuples@v0.2.2...v0.2.3

Commits

Updates rsa from 0.9.6 to 0.9.7

Changelog

Sourced from rsa's changelog.

0.9.7 (2024-11-26)

Fixed

  • always validate keys in from_components
  • do not crash when handling tiny keys in PKCS1v15
Commits

Updates libc from 0.2.159 to 0.2.168

Release notes

Sourced from libc's releases.

0.2.168

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

0.2.167

Added

Fixed

  • Fix the build with rustc-dep-of-std rust-lang/libc#4158
  • Wasi: Add back unsafe block for clockid_t static variables (#4157)

Cleanup

Other

Removed

  • Remove one unused import after the edition 2021 bump

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.168 - 2024-12-09

Added

Deprecated

  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#4183)

Fixed

  • Make the Debug implementation for unions opaque (#4176)

Other

0.2.167 - 2024-11-28

Added

Fixed

  • Fix the build with rustc-dep-of-std rust-lang/libc#4158
  • Wasi: Add back unsafe block for clockid_t static variables (#4157)

Cleanup

Other

Removed

... (truncated)

Commits
  • e6082ef chore: release v0.2.168
  • 26b5337 Merge pull request #4190 from tgross35/backport-ci-artifacts
  • 4344e54 ci: Upload artifacts created by libc-test
  • abe73ab Merge pull request #4187 from tgross35/backport-romanesco
  • 1e2da75 adding POSIX memccpy and mempcpy GNU extension.
  • 7457aa1 fix: make Debug impl for unions opaque
  • 8592ff9 Lift IFA_* constants from linux/gnu to linux
  • 069c923 Test(semver/linux): Add missing PF_* constants
  • 05768aa Docs(linux): Add docs for PF_* constants
  • 0e89233 Feat(linux): Add new process flags
  • Additional commits viewable in compare view

Updates tempfile from 3.13.0 to 3.14.0

Changelog

Sourced from tempfile's changelog.

3.14.0

  • Make the wasip2 target work (requires tempfile's "nightly" feature to be enabled). #305.
  • Allow older windows-sys versions #304.
Commits

Updates tendermint-testgen from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-testgen's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-testgen's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Bumps the rust group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.216` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.133` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.94` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `2.0.8` |
| [mbedtls](https://github.com/fortanix/rust-mbedtls) | `0.12.3` | `0.13.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.42.0` |
| [tendermint](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-proto](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-light-client](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-rpc](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.1` |
| [impl-trait-for-tuples](https://github.com/bkchr/impl-trait-for-tuples) | `0.2.2` | `0.2.3` |
| [rsa](https://github.com/RustCrypto/RSA) | `0.9.6` | `0.9.7` |
| [libc](https://github.com/rust-lang/libc) | `0.2.159` | `0.2.168` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.13.0` | `3.14.0` |
| [tendermint-testgen](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.23` |
| [rustls](https://github.com/rustls/rustls) | `0.23.18` | `0.23.20` |



Updates `serde` from 1.0.210 to 1.0.216
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.216)

Updates `serde_json` from 1.0.128 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.128...v1.0.133)

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

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

Updates `mbedtls` from 0.12.3 to 0.13.0
- [Release notes](https://github.com/fortanix/rust-mbedtls/releases)
- [Commits](fortanix/rust-mbedtls@mbedtls_v0.12.3...mbedtls_v0.13.0)

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

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

Updates `tendermint` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-proto` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-light-client` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-rpc` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `arbitrary` from 1.3.2 to 1.4.1
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.1)

Updates `impl-trait-for-tuples` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/bkchr/impl-trait-for-tuples/releases)
- [Commits](bkchr/impl-trait-for-tuples@v0.2.2...v0.2.3)

Updates `rsa` from 0.9.6 to 0.9.7
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.7/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.9.6...v0.9.7)

Updates `libc` from 0.2.159 to 0.2.168
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.168/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.159...0.2.168)

Updates `tempfile` from 3.13.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.13.0...v3.14.0)

Updates `tendermint-testgen` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `clap` from 4.5.20 to 4.5.23
- [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.20...clap_complete-v4.5.23)

Updates `rustls` from 0.23.18 to 0.23.20
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.18...v/0.23.20)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: mbedtls
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-proto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-light-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-rpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: arbitrary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: impl-trait-for-tuples
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rsa
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-testgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the c:deps Category: external dependencies label Dec 18, 2024
@dependabot dependabot bot requested a review from pro-wh as a code owner December 18, 2024 07:57
@dependabot dependabot bot added the rust label Dec 18, 2024
@dependabot dependabot bot requested review from ptrus and peternose as code owners December 18, 2024 07:57
Copy link

netlify bot commented Dec 18, 2024

Deploy Preview for oasisprotocol-oasis-core canceled.

Name Link
🔨 Latest commit f3042ca
🔍 Latest deploy log https://app.netlify.com/sites/oasisprotocol-oasis-core/deploys/676280589048440008c03513

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 19, 2024

Superseded by #5980.

@dependabot dependabot bot closed this Dec 19, 2024
@dependabot dependabot bot deleted the dependabot/cargo/rust-7cfde2433b branch December 19, 2024 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:deps Category: external dependencies rust
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants