foundry-rs / starknet-foundry

Blazing fast toolkit for developing Starknet contracts.
https://foundry-rs.github.io/starknet-foundry/
MIT License
279 stars 139 forks source link

Bump the prod-deps group across 1 directory with 17 updates #2184

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the prod-deps group with 17 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.86
camino 1.1.6 1.1.7
clap 4.5.4 4.5.6
num-traits 0.2.18 0.2.19
regex 1.10.4 1.10.5
serde 1.0.199 1.0.203
serde_json 1.0.116 1.0.117
thiserror 1.0.59 1.0.61
tokio 1.37.0 1.38.0
tokio-util 0.7.10 0.7.11
num-bigint 0.4.4 0.4.5
smol_str 0.2.1 0.2.2
semver 1.0.22 1.0.23
schemars 0.8.17 0.8.21
async-trait 0.1.74 0.1.80
syn 2.0.60 2.0.65
proc-macro2 1.0.81 1.0.85

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view


Updates camino from 1.1.6 to 1.1.7

Release notes

Sourced from camino's releases.

camino 1.1.7

Fixed

  • Resolve unexpected_cfg warnings.
Changelog

Sourced from camino's changelog.

[1.1.7] - 2024-05-14

Fixed

  • Resolve unexpected_cfg warnings.
Commits
  • 9cabdbd [camino] version 1.1.7
  • 6e292d2 prepare release
  • 4ae167f add cargo warnings for missing feature enablements
  • f314336 fix incompatible_msrv warning
  • c84a312 resolve unexpected_cfg warnings
  • 50dfa7a [ci] use M1 runners for macOS builds (#89)
  • 7de9219 [ci] fix build on Rust 1.34 and 1.44
  • af3462f Add docstring for Utf8Path::try_from
  • bd7920e fix clippy issues with Rust 1.74
  • 8bec623 Add MSRV field to camino
  • Additional commits viewable in compare view


Updates clap from 4.5.4 to 4.5.6

Release notes

Sourced from clap's releases.

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap's changelog.

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
Commits
  • 51de731 chore(ci): Lint clippy::items_after_statements seems too strict
  • 181a2cf chore(ci): Allow prelude wildcard imports
  • 82cf9a6 chore(ci): Reduce noisy lints
  • See full diff in compare view


Updates num-traits from 0.2.18 to 0.2.19

Changelog

Sourced from num-traits's changelog.

Release 0.2.19 (2024-05-03)

Contributors: @​cuviper, @​michaelciraci

Commits
  • 7ec3d41 Merge pull request #321 from cuviper/release-0.2.19
  • 1a8d429 Release 0.2.19
  • 8358949 Merge pull request #305 from michaelciraci/implement-float-clamp
  • 1a44ffb Add a default impl for Float::clamp
  • 2957044 Implementing clamp for Float trait
  • a90d4a6 Merge pull request #310 from cuviper/msrv-1.60
  • ca42b4e Update the MSRV in docs
  • e9bea92 Upgrade to 2021 edition
  • 4e253cd Assume has_float_to_from_bytes
  • 7212041 Assume has_int_to_from_bytes
  • Additional commits viewable in compare view


Updates regex from 1.10.4 to 1.10.5

Changelog

Sourced from regex's changelog.

1.10.5 (2024-06-09)

This is a new patch release with some minor fixes.

Bug fixes:

Commits
  • 0718fc5 1.10.5
  • 377463b changelog: 1.10.4 and 1.10.5
  • 68c4f0b regex-automata-0.4.7
  • 4757b5f regex-syntax-0.8.4
  • 1430b65 changelog: 1.10.4
  • 1f9f9cc bytes: escape invalid UTF-8 bytes in debug output for Match
  • ab4c8d1 doc: fix duplicate phrasing typo
  • ddeb85e cli/deps: update memmap2 to 0.9
  • 023f1c9 lite: fix attribute warning about rustfmt
  • 9c139f4 syntax: simplify Hir::dot constructors
  • Additional commits viewable in compare view


Updates serde from 1.0.199 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)
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.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits


Updates thiserror from 1.0.59 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)
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 tokio-util from 0.7.10 to 0.7.11

Commits
  • cdf9d99 chore: prepare tokio-util v0.7.11 (#6535)
  • f6eb1ee time: lazily init timers on first poll (#6512)
  • b7d4fba sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • 3c8d8e6 chore: fix latest rust-1.78.0 warnings (#6528)
  • e971a5e util: use FIFO ordering in WakeList (#6521)
  • 28439e2 time: clean up implementation (#6517)
  • d33fdd8 time: check for overflow in Interval::poll_tick (#6487)
  • 731dde2 runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
  • 9ed5957 wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
  • a73d6bf macros: #[cfg(not(test))] is no longer necessary for main macros (#6508)
  • Additional commits viewable in compare view


Updates num-bigint from 0.4.4 to 0.4.5

Changelog

Sourced from num-bigint's changelog.

Release 0.4.5 (2024-05-06)

Contributors: @​cuviper, @​joelonsql, @​waywardmonkeys

Commits
  • a6d29fa Merge pull request #303 from cuviper/release-0.4.5
  • 9237009 Release 0.4.5
  • a6f3f5b Merge pull request #302 from cuviper/lints
  • 8f2666d Fix clippy::ptr_arg
  • 8bf4881 Fix clippy::unnecessary_fallible_conversions
  • c992166 Fix clippy::legacy_numeric_constants
  • 29c4d04 Nightly check-cfg doesn't like target_pointer_width = "128"
  • 9210db6 Merge pull request #236 from cuviper/x86-div
  • b02188d Skip asm under miri
  • ecec8c4 Use inline asm! for x86 DIV
  • Additional commits viewable in compare view


Updates smol_str from 0.2.1 to 0.2.2

Commits


Updates semver from 1.0.22 to 1.0.23

Release notes

Sourced from semver's releases.

1.0.23

  • Resolve unexpected_cfgs warning (#318)
Commits
  • 69efd3c Release 1.0.23
  • 451b419 Merge pull request #318 from dtolnay/checkcfg
  • 5b71485 Resolve unexpected_cfgs warning
  • c520af7 Revert "Temporarily disable miri on doctests"
  • 73b5d9e Merge pull request #313 from Saecki/patch-1
  • e8d61de chore: fix typo in safety comment
  • d282d48 Explicitly install a Rust toolchain for cargo-outdated job
  • 6e6ba22 Temporarily disable miri on doctests
  • See full diff in compare view


Updates schemars from 0.8.17 to 0.8.21

Release notes

Sourced from schemars's releases.

v0.8.21

Fixed:

v0.8.20

Fixed:

  • Revert unintentional change in behaviour when combining default and required attributes (GREsau/schemars#292)

v0.8.19

Fixed:

  • Regression that caused a compile error when deriving JsonSchema on an enum with no variants (GREsau/schemars#287)

v0.8.18

Fixed:

Changelog

Sourced from schemars's changelog.

[0.8.21] - 2024-05-23

Fixed:

[0.8.20] - 2024-05-18

Fixed:

  • Revert unintentional change in behaviour when combining default and required attributes (GREsau/schemars#292)

[0.8.19] - 2024-05-06

Fixed:

  • Regression that caused a compile error when deriving JsonSchema on an enum with no variants (GREsau/schemars#287)

[0.8.18] - 2024-05-06

Fixed:

Commits


Updates async-trait from 0.1.74 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)

0.1.79

  • Clean up some dead code

0.1.78

  • Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up (#260)

0.1.77

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

0.1.76

  • Documentation improvements

0.1.75

  • Documentation improvements
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
  • 1eb21ed Release 0.1.79
  • 82cb95c Resolve unused field of ReplaceSelf syntax tree visitor
  • Additional commits viewable in compare view


Updates syn from 2.0.60 to 2.0.65

Release notes

Sourced from syn's releases.

2.0.65

  • Optimize the implementation of Fold to compile faster (#1666, #1667, #1668)

2.0.64

  • Support using ParseBuffer across catch_unwind (#1646)
  • Validate that the expression in a let-else ends in brace as required by rustc (#1648, #1649)
  • Legalize invalid const generic arguments by wrapping in braces (#1654, #1655)
  • Fix some expression precedence edge cases involving break and return in loop headers (#1656)
  • Always print closure bodies with a brace when the closure has an explicit return type (#1658)
  • Automatically insert necessary parentheses in ToTokens for Expr when required by expression precedence (#1659)
  • Support struct literal syntax in match guard expressions (#1662)

2.0.63

  • Parse and print long if-else-if chains without reliance on deep recursion to avoid overflowing stack (#1644, #1645)

2.0.62

  • Reject invalid unparenthesized range and comparison operator expressions (#1642, #1643)

2.0.61

  • Check for legal binding name in the ident of Pat::Ident (#1627)
  • Resolve unexpected_cfgs warning (#1635)
Commits
  • 9f2371e Release 2.0.65
  • 4cd1813 Merge pull request #1668 from dtolnay/foldhelper
  • ed54092 Eliminate gen::helper module
  • eacc8ab Eliminate FoldHelper trait
  • 6e20bb8 Merge pull request #1667 from dtolnay/punctuatedfold
  • 9d95cab Optimize punctuated::fold
  • 82ffe86 Move Punctuated fold helper to punctuated module
  • 3dfacc1 Ignore manual_map clippy lint
  • 7273aa7 Merge pull request #1666 from dtolnay/foldhelper
  • 8124c0e Generate fewer monomorphizations in Fold
  • Additional commits viewable in compare view


Updates proc-macro2 from 1.0.81 to 1.0.85

Release notes

Sourced from proc-macro2's releases.

1.0.85

  • Mark some tests as only for 64-bit targets (#463)

1.0.84

1.0.83

  • Optimize the representation of Ident (#462)

1.0.82

  • Resolve unexpected_cfgs warning (#456)
Commits
  • 5ee1cab Release 1.0.85
  • aa64c20 Merge pull request #464 from dtolnay/testsize
  • bc9f4d9 Ignore size tests on non-64bit target
  • 1160ec3 Make size tests #[ignore] in cfg(randomize_layout)
  • 33c9578 Release 1.0.84
  • d850da5 Merge pull request #455 from CensoredUsername/master
  • eabac15 Add a warning to Delimiter::None that rustc currently does not respect it.
  • 1b77aca Release 1.0.83
  • 728eddf Merge pull request #462 from dtolnay/identsize
  • c56c5e6 Drop irrelevant capacity field from Ident representation
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 3 weeks ago

Superseded by #2186.