Skip to content

A0-3951: Bump the all-rust-deps-except-liminal group across 1 directory with 13 updates#44

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-cargo-all-rust-deps-except-liminal-d6a26e4ad0
Closed

A0-3951: Bump the all-rust-deps-except-liminal group across 1 directory with 13 updates#44
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-cargo-all-rust-deps-except-liminal-d6a26e4ad0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the all-rust-deps-except-liminal group with 13 updates in the / directory:

Package From To
async-trait 0.1.79 0.1.80
derive_more 0.99.17 0.99.18
ink 5.0.0-rc.2 5.0.0
log 0.4.21 0.4.22
parity-scale-codec 3.6.9 3.6.12
parking_lot 0.12.1 0.12.3
paste 1.0.14 1.0.15
scale-info 2.11.1 2.11.3
serde 1.0.197 1.0.203
serde_json 1.0.115 1.0.119
thiserror 1.0.58 1.0.61
tokio 1.37.0 1.38.0
getrandom 0.2.12 0.2.14

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates derive_more from 0.99.17 to 0.99.18

Changelog

Sourced from derive_more's changelog.

0.99.18 - 2024-06-15

  • Update syn to version 2.x
  • Bump minimum supported rust version to 1.65

0.99.10 - 2020-09-11

Improvements

  • From supports additional types for conversion: #[from(types(u8, u16))].

0.99.7 - 2020-05-16

Fixes

  • Fix generic derives for MulAssign

Improvements

  • When specifying specific features of the crate to only enable specific derives, the extra-traits feature of syn is not always enabled when those the specified features do not require it. This should speed up compile time of syn when this feature is not needed.

0.99.6 - 2020-05-13

Improvements

  • Make sure output of derives is deterministic, for better support in rust-analyzer

0.99.5 - 2020-03-28

New features

Fixes

  • Fix generic bounds for Deref and DerefMut with forward, i.e. put Deref bound on whole type, so on where Box<T>: Deref instead of on T: Deref. (#107)

  • The tests directory is now correctly included in the crate (requested by Debian package maintainers)

0.99.4 - 2020-03-28

... (truncated)

Commits
  • 678a473 chore: Release derive_more version 0.99.18
  • fcde556 Include example published package
  • 89cbd82 Remove track_caller feature detection because msrv was bumped
  • db36f6d Fix question marks
  • f0c2530 fmt
  • 461db95 Fix issue when compiling on 1.65
  • 39ad36f Update changelog for v0.99.18
  • 57b6e17 Update to syn 2
  • ea4fa94 Fix tests
  • ab82aef Ignore error doctests as it still contains old backtrace logic
  • Additional commits viewable in compare view

Updates ink from 5.0.0-rc.2 to 5.0.0

Release notes

Sourced from ink's releases.

v5.0.0

ℹ️ We have created a migration guide from ink! 4 to ink! 5. It also contains an overview over all breaking changes and newly added features. You can view it here.

Summary

This release addresses the rest of the severities described in the OpenZeppelin security review of ink! and cargo-contract. One of the notable addressed issues is the proxy selector clashing attack. As of this release, ink! only allows exactly one other message with a well-known reserved selector to be defined. You can read more about the change in the #1827 and #2031.

ink! 5.0.0 features a significant number of new features:

  • We have introduced a new API based on the calculated or specified selectors for the event definition. This allows events to be defined in separate files and modules, and be shared across multiple ink! contracts - #1827 and #2031.
  • @​pmikolajczyk41 has introduced an alternative E2E testing framework, DRink!, that support quasi-testing model, it allows the test simulate a running node as part of the E2E test while improving debugging experience such as allowing to set breakpoint and step through each stage of execution cycle.
  • Following improvements in E2E, we have added a call builder API that allows to easily build calls while significantly reducing boilerplate code - #1917 and #2075
  • Another notable introduction in 5.0.0 release is the support for multiple chain extensions that empower developers to build even more sophisticated and advanced contracts for supported chains - #1958.
  • To further address our consideration of the intrinsic security of ink! smart contracts, we have disallowed unchecked arithmetic expressions. cargo-contract will fail to compile the contract with the raw arithmetic operation - #1831.

These are the main features we have introduced in this release. We also encourage developers to have a look at more detailed changelog entries to find out about any breaking changes that may affect the development of new ink! contracts.

Compatibility

See the compatibility section of our migration guide for a detailed description. On a high level:

  • Rust: >= 1.70
  • cargo-contract: >= 4.0.0
  • polkadot-sdk: >= 0.9.3. But if using the new functions introduced in #2123 and #2077 >= 1.8.0 and if using the new functions introduced in #2076 >= 1.9.0.
  • polkadot-js/api and polkadot-js/api-contract: >= 10.12.1
  • substrate-contracts-node: >= 0.39.0

Changelog

Added

  • Add Hash trait to Selector struct - #2149
  • instantiate_v2 with additional limit parameters #2123
  • Custom signature topic in Events - #2031
  • [Linter] non_fallible_api lint - #2004
  • [Linter] Publish the linting crates on crates.io - #2060
  • [E2E] Added create_call_builder for testing existing contracts - #2075
  • call_v2 cross-contract calls with additional limit parameters - #2077
  • delegate_dependency api calls - #2076
  • Allow mutable parameters in messages - #2004
  • Clean E2E configuration parsing - #1922
  • Make set_code_hash generic - #1906
  • Provide a StorageVec datastructure built on top of Lazy - #1995
  • Add fallible methods for Mapping and Lazy - #1910

... (truncated)

Changelog

Sourced from ink's changelog.

Version 5.0.0

ℹ️ We've created a migration guide from ink! 4 to ink! 5. It also contains an overview over all breaking changes and newly added features.

👉 You can view it here.

Summary

This release addresses the rest of the severities described in the OpenZeppelin security review of ink! and cargo-contract. One of the notable addressed issues is the proxy selector clashing attack. As of this release, ink! only allows exactly one other message with a well-known reserved selector to be defined. You can read more about the change in the #1827 and #2031.

ink! 5.0.0 features a significant number of new features:

  • We have introduced a new API based on the calculated or specified selectors for the event definition. This allows events to be defined in separate files and modules, and be shared across multiple ink! contracts - #1827 and #2031.
  • @​pmikolajczyk41 has introduced an alternative E2E testing framework, DRink!, that support quasi-testing model, it allows the test simulate a running node as part of the E2E test while improving debugging experience such as allowing to set breakpoint and step through each stage of execution cycle.
  • Following improvements in E2E, we have added a call builder API that allows to easily build calls while significantly reducing boilerplate code - #1917 and #2075
  • Another notable introduction in 5.0.0 release is the support for multiple chain extensions that empower developers to build even more sophisticated and advanced contracts for supported chains - #1958.
  • To further address our consideration of the intrinsic security of ink! smart contracts, we have disallowed unchecked arithmetic expressions. cargo-contract will fail to compile the contract with the raw arithmetic operation - #1831.

These are the main features we have introduced in this release. We also encourage developers to have a look at more detailed changelog entries to find out about any breaking changes that may affect the development of new ink! contracts.

Compatibility

See the compatibility section of our migration guide for a detailed description. On a high level:

  • Rust: >= 1.70
  • cargo-contract: >= 4.0.0
  • polkadot-sdk: >= 0.9.3. But if using the new functions introduced in #2123 and #2077 >= 1.8.0 and if using the new functions introduced in #2076 >= 1.9.0.
  • polkadot-js/api and polkadot-js/api-contract: >= 10.12.1
  • substrate-contracts-node: >= 0.39.0

Changelog

Added

  • Add Hash trait to Selector struct - #2149
  • instantiate_v2 with additional limit parameters #2123
  • Custom signature topic in Events - #2031
  • [Linter] non_fallible_api lint - #2004
  • [Linter] Publish the linting crates on crates.io - #2060
  • [E2E] Added create_call_builder for testing existing contracts - #2075
  • call_v2 cross-contract calls with additional limit parameters - #2077
  • delegate_dependency api calls - #2076
  • Allow mutable parameters in messages - #2004
  • Clean E2E configuration parsing - #1922
  • Make set_code_hash generic - #1906

... (truncated)

Commits

Updates log from 0.4.21 to 0.4.22

Changelog

Sourced from log's changelog.

[0.4.22] - 2024-06-27

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...0.4.22

Commits
  • d5ba2cf Merge pull request #634 from rust-lang/cargo/0.4.22
  • d1a8306 prepare for 0.4.22 release
  • 46894ef Merge pull request #633 from rust-lang/feat/panic-info
  • e0d389c Merge pull request #632 from rust-lang/feat/loosen-atomics
  • c9e5e13 use Location::caller() for file and line info
  • 507b672 loosen orderings for logger initialization
  • c879b01 Merge pull request #628 from Thomasdezeeuw/fix-warnings
  • 405fdb4 Merge pull request #627 from Thomasdezeeuw/check-features
  • 1307ade Remove unneeded import
  • 710560e Don't use --all-features in CI
  • Additional commits viewable in compare view

Updates parity-scale-codec from 3.6.9 to 3.6.12

Commits
  • 57925fc Release 3.6.12
  • e8b12a9 Release 3.6.11 to fix a version number discrepancy between `parity-scale-code...
  • 5446256 Bump parity-scale-codec version
  • 5bf39a1 Bump proc-macro-crate to v3.1.0 in 3.6.x branch (#590)
  • 67efb53 chore(docs): Restore missing doc for codec-crate attribute (#576)
  • See full diff in compare view

Updates parking_lot from 0.12.1 to 0.12.3

Changelog

Sourced from parking_lot's changelog.

parking_lot 0.12.3 (2024-05-24)

  • Export types provided by arc_lock feature (#442)

parking_lot 0.12.2, parking_lot_core 0.9.10, lock_api 0.4.12 (2024-04-15)

  • Fixed panic when calling with_upgraded twice on a ArcRwLockUpgradableReadGuard (#431)
  • Fixed RwLockUpgradeableReadGuard::with_upgraded
  • Added lock_api::{Mutex, ReentrantMutex, RwLock}::from_raw methods (#429)
  • Added Apple visionOS support (#433)

parking_lot_core 0.9.9, lock_api 0.4.11 (2023-10-18)

  • Fixed RwLockUpgradeableReadGuard::with_upgraded. (#393)
  • Fixed ReentrantMutex::bump lock count. (#390)
  • Added methods to unsafely create a lock guard out of thin air. (#403)
  • Added support for Apple tvOS. (#405)

parking_lot_core 0.9.8, lock_api 0.4.10 (2023-06-05)

  • Mark guards with #[clippy::has_significant_drop] (#369, #371)
  • Removed windows-sys dependency (#374, #378)
  • Add atomic_usize default feature to support platforms without atomics. (#380)
  • Add with_upgraded API to upgradable read locks (#386)
  • Make RwLock guards Sync again (#370)

parking_lot_core 0.9.7 (2023-02-01)

  • Update windows-sys dependency to 0.45. (#368)

parking_lot_core 0.9.6 (2023-01-11)

  • Add support for watchOS. (#367)

parking_lot_core 0.9.5 (2022-11-29)

  • Update use of libc::timespec to prepare for future libc version (#363)

parking_lot_core 0.9.4 (2022-10-18)

  • Bump windows-sys dependency to 0.42. (#356)

lock_api 0.4.9 (2022-09-20)

  • Fixed ReentrantMutexGuard::try_map signature (#355)

lock_api 0.4.8 (2022-08-28)

  • Fixed unsound Sync/Send impls for ArcMutexGuard. (#349)
  • Added ArcMutexGuard::into_arc. (#350)
Commits
  • a29dd3d Release parking_lot 0.12.3
  • f7efcae Merge pull request #442 from iwanders/add-arc_lock-feature-top-level-exports
  • c357017 Export types provided by arc_lock feature.
  • 9dace42 Release parking_lot 0.12.2, parking_lot_core 0.9.10, lock_api 0.4.12
  • 4f898be Merge pull request #435 from sorcio/wasm-atomics-feature
  • 9ee3a54 stdarch_wasm_atomic_wait instead of stdsimd
  • 7aeb2f1 Merge pull request #433 from QuentinPerez/master
  • c0a9077 Add Apple visionOS support
  • 7ab94b6 Merge pull request #432 from alex/patch-1
  • 75a97b2 Update redox_syscall dependency version
  • Additional commits viewable in compare view

Updates paste from 1.0.14 to 1.0.15

Release notes

Sourced from paste's releases.

1.0.15

  • Resolve unexpected_cfgs warning (#102)
Commits
  • a2c7e27 Release 1.0.15
  • 1d23098 Merge pull request #102 from dtolnay/checkcfg
  • 1edfaae Resolve unexpected_cfgs warning
  • cc6803d Explicitly install a Rust toolchain for cargo-outdated job
  • d39fb86 Ignore dead code lint in tests
  • 14872ad Work around empty_docs clippy lint in test
  • ed844dc Work around dead_code warning in test
  • 0a4161b Add cargo.toml metadata to link to crate documentation
  • 5a2bce1 Test docs.rs documentation build in CI
  • d7e0be1 Update actions/checkout@v3 -> v4
  • Additional commits viewable in compare view

Updates scale-info from 2.11.1 to 2.11.3

Release notes

Sourced from scale-info's releases.

v2.11.3

What's Changed

New Contributors

Full Changelog: paritytech/scale-info@v2.11.2...v2.11.3

v2.11.2

[2.11.2] - 2024-04-05

  • Fix a bug in the PortableRegistry::retain() method where recursive types (types containing themselves) were not properly handled.
Changelog

Sourced from scale-info's changelog.

[2.11.3] - 2024-05-08

  • Bump proc-macro-crate to version 3.

[2.11.2] - 2024-04-05

  • Fix a bug in the PortableRegistry::retain() method where recursive types (types containing themselves) were not properly handled.
Commits

Updates serde from 1.0.197 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable in compare view

Updates serde_json from 1.0.115 to 1.0.119

Release notes

Sourced from serde_json's releases.

v1.0.119

v1.0.118

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

Commits
  • b48b9a3 Release 1.0.119
  • 8878cd7 Make shift_insert available for inlining like other Map methods
  • 352b7ab Document the cfg required for Map::shift_insert to exist
  • c17e63f Merge pull request #1149 from joshka/master
  • 309ef6b Add Map::shift_insert()
  • a9e089a Merge pull request #1146 from haouvw/master
  • a83fe96 chore: remove repeat words
  • c4f24f3 Release 1.0.118
  • 51d94eb Combine Map's Hash into one impl
  • 5e7bedc Touch up PR 1127
  • Additional commits viewable in compare view

Updates thiserror from 1.0.58 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)

1.0.60

  • Resolve unexpected_cfgs warning (#298)

1.0.59

  • Unblock testing of rustc debug-fmt-detail option (#297)
Commits

Updates tokio from 1.37.0 to 1.38.0

Release notes

Sourced from tokio's releases.

Tokio v1.38.0

This release marks the beginning of stabilization for runtime metrics. It stabilizes RuntimeMetrics::worker_count. Future releases will continue to stabilize more metrics.

Added

  • fs: add File::create_new (#6573)
  • io: add copy_bidirectional_with_sizes (#6500)
  • io: implement AsyncBufRead for Join (#6449)
  • net: add Apple visionOS support (#6465)
  • net: implement Clone for NamedPipeInfo (#6586)
  • net: support QNX OS (#6421)
  • sync: add Notify::notify_last (#6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • sync: add split method to the semaphore permit (#6472, #6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)

Changed

  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#6497)
  • metrics: fix blocking_threads count (#6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#6556)
  • runtime: move task out of the lifo_slot in block_in_place (#6596)
  • runtime: panic if global_queue_interval is zero (#6445)
  • sync: always drop message in destructor for oneshot receiver (#6558)
  • sync: instrument Semaphore for task dumps (#6499)
  • sync: use FIFO ordering when waking batches of wakers (#6521)
  • task: make LocalKey::get work with Clone types (#6433)
  • tests: update nix and mio-aio dev-dependencies (#6552)
  • time: clean up implementation (#6517)
  • time: lazily init timers on first poll (#6512)
  • time: remove the true_when field in TimerShared (#6563)
  • time: use sharding for timer implementation (#6534)

Fixed

  • taskdump: allow building taskdump docs on non-unix machines (#6564)
  • time: check for overflow in Interval::poll_tick (#6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#6603)

Documented

  • fs: rewrite file system docs (#6467)
  • io: fix stdin documentation (#6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#6498)
  • macros: render more comprehensible documentation for select! (#6468)
  • net: add missing types to module docs (#6482)
  • net: fix misleading NamedPipeServer example (#6590)

... (truncated)

Commits

Updates getrandom from 0.2.12 to 0.2.14

Changelog

Sourced from getrandom's changelog.

[0.2.14] - 2024-04-08

Fixed

  • Enable /dev/urandom fallback for MUSL-based Linux targets #408

#408: rust-random/getrandom#408

[0.2.13] - 2024-04-06

Added

  • linux_disable_fallback crate feature to disable /dev/urandom-based fallback on Linux and Android targets. Enabling this feature bumps minimum supported Linux kernel version to 3.17 and Android API level to 23 (Marshmallow). #396

Changed

  • Disable /dev/urandom fallback for Linux targets outside of the following target_arches: aarch64, arm, powerpc, powerpc64, s390x, x86, x86_64 #396
  • Do not catch EPERM error code on Android while checking availability of the getrandom syscall #396

#396: rust-random/getrandom#396

Commits
  • a39033a Enable /dev/urandom fallback for MUSL-based Linux targets (#408)
  • 968dd48 Release v0.2.13 (#405)
  • 8ffd43e Conditionally disable file fallback for Android and Linux (#396)
  • 6b7bcb5 Replace man7.org links with manned.org (#404)
  • 5f0701f CI: Run tests on aarch64-apple-darwin and aarch64-apple-ios-sim. (#398)
  • 489eeee Fix nightly build by removing redundant use (#399)
  • d102c36 Use doc_auto_cfg instead of doc_cfg (#392)
  • 2e4bb4d Correct comments regarding LazyUsize (#391)
  • See full diff in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ry with 13 updates

Bumps the all-rust-deps-except-liminal group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [derive_more](https://github.com/JelteF/derive_more) | `0.99.17` | `0.99.18` |
| [ink](https://github.com/paritytech/ink) | `5.0.0-rc.2` | `5.0.0` |
| [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` |
| [parity-scale-codec](https://github.com/paritytech/parity-scale-codec) | `3.6.9` | `3.6.12` |
| [parking_lot](https://github.com/Amanieu/parking_lot) | `0.12.1` | `0.12.3` |
| [paste](https://github.com/dtolnay/paste) | `1.0.14` | `1.0.15` |
| [scale-info](https://github.com/paritytech/scale-info) | `2.11.1` | `2.11.3` |
| [serde](https://github.com/serde-rs/serde) | `1.0.197` | `1.0.203` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.115` | `1.0.119` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.58` | `1.0.61` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.38.0` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.12` | `0.2.14` |



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

Updates `derive_more` from 0.99.17 to 0.99.18
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/v0.99.18/CHANGELOG.md)
- [Commits](JelteF/derive_more@v0.99.17...v0.99.18)

Updates `ink` from 5.0.0-rc.2 to 5.0.0
- [Release notes](https://github.com/paritytech/ink/releases)
- [Changelog](https://github.com/use-ink/ink/blob/master/CHANGELOG.md)
- [Commits](use-ink/ink@v5.0.0-rc.2...v5.0.0)

Updates `log` from 0.4.21 to 0.4.22
- [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.21...0.4.22)

Updates `parity-scale-codec` from 3.6.9 to 3.6.12
- [Release notes](https://github.com/paritytech/parity-scale-codec/releases)
- [Changelog](https://github.com/paritytech/parity-scale-codec/blob/master/CHANGELOG.md)
- [Commits](paritytech/parity-scale-codec@v3.6.9...v3.6.12)

Updates `parking_lot` from 0.12.1 to 0.12.3
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@0.12.1...0.12.3)

Updates `paste` from 1.0.14 to 1.0.15
- [Release notes](https://github.com/dtolnay/paste/releases)
- [Commits](dtolnay/paste@1.0.14...1.0.15)

Updates `scale-info` from 2.11.1 to 2.11.3
- [Release notes](https://github.com/paritytech/scale-info/releases)
- [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md)
- [Commits](paritytech/scale-info@v2.11.1...v2.11.3)

Updates `serde` from 1.0.197 to 1.0.203
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.197...v1.0.203)

Updates `serde_json` from 1.0.115 to 1.0.119
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.115...v1.0.119)

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

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

Updates `getrandom` from 0.2.12 to 0.2.14
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.12...v0.2.14)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: derive_more
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: ink
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: parity-scale-codec
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: parking_lot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: paste
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: scale-info
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-rust-deps-except-liminal
- dependency-name: getrandom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-rust-deps-except-liminal
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jul 1, 2024
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Jul 2, 2024

Superseded by #45.

@dependabot dependabot bot closed this Jul 2, 2024
@dependabot dependabot bot deleted the dependabot-cargo-all-rust-deps-except-liminal-d6a26e4ad0 branch July 2, 2024 10:10
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