Skip to content

Comments

chore(monorepo): update cargo pre-1.0 packages (patch)#13

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-cargo-all-pre-1.0
Open

chore(monorepo): update cargo pre-1.0 packages (patch)#13
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-cargo-all-pre-1.0

Conversation

@renovate
Copy link

@renovate renovate bot commented Aug 29, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
ahash dependencies patch 0.8.110.8.12
alloy-json-abi (source) workspace.dependencies patch 0.7.00.7.7
alloy-primitives (source) workspace.dependencies patch 0.7.00.7.7
alloy-rlp (source) workspace.dependencies patch 0.3.40.3.13
alloy-rlp-derive (source) workspace.dependencies patch 0.3.40.3.13
alloy-sol-macro (source) workspace.dependencies patch 0.7.00.7.7
alloy-sol-types (source) workspace.dependencies patch 0.7.00.7.7
ansi-parser dependencies patch 0.9.00.9.1
async-trait dependencies patch 0.1.730.1.89
async-trait workspace.dependencies patch 0.1.730.1.89
bigdecimal dependencies patch 0.4.50.4.10
boyer-moore-magiclen (source) dependencies patch 0.2.160.2.22
c-kzg workspace.dependencies patch 0.4.00.4.2
chrono dependencies patch 0.4.350.4.43
chrono workspace.dependencies patch 0.4.190.4.43
const_format dependencies patch 0.2.320.2.35
criterion (source) dependencies patch 0.50.5.1
criterion (source) dev-dependencies patch 0.50.5.1
derive_builder dependencies patch 0.20.00.20.2
derive_more dependencies patch 0.99.170.99.20
derive_more workspace.dependencies patch 0.99.170.99.20
env_logger workspace.dependencies patch 0.10.00.10.2
eyre workspace.dependencies patch 0.6.80.6.12
futures (source) workspace.dependencies patch 0.3.280.3.32
human_bytes (source) dependencies patch 0.4.10.4.3
hyper (source) workspace.dependencies patch 0.14.250.14.32
indicatif workspace.dependencies patch 0.17.80.17.11
itertools dependencies patch 0.12.00.12.1
libc dependencies patch 0.20.2.182
malachite (source) workspace.dependencies patch 0.4.00.4.22
malachite-q (source) workspace.dependencies patch 0.4.00.4.22
metrics-exporter-prometheus workspace.dependencies patch =0.12.1=0.12.2
metrics-util workspace.dependencies patch 0.15.00.15.1
moka dependencies patch 0.12.70.12.13
num dependencies patch 0.4.10.4.3
parking_lot workspace.dependencies patch 0.12.10.12.5
petgraph dependencies patch 0.6.40.6.5
phf workspace.dependencies patch 0.11.20.11.3
phf_codegen workspace.dependencies patch 0.11.20.11.3
plotly dependencies patch 0.9.00.9.1
plotters (source) dependencies patch 0.3.50.3.7
reqwest workspace.dependencies patch 0.12.20.12.28
schnellru dependencies patch 0.2.20.2.4
serde_repr workspace.dependencies patch 0.1.160.1.20
statrs dependencies patch 0.160.16.1
statrs dev-dependencies patch 0.160.16.1
strum_macros dependencies patch 0.250.25.3
tar workspace.dependencies patch 0.4.410.4.44
tikv-jemalloc-ctl dependencies patch 0.5.00.5.4
tikv-jemallocator dependencies patch 0.5.00.5.4
toml build-dependencies patch 0.8.90.8.23
toml dependencies patch 0.8.90.8.23
toml dependencies patch 0.8.20.8.23
toml workspace.dependencies patch 0.8.20.8.23
zstd dependencies patch 0.130.13.3

Release Notes

tkaitchuck/ahash (ahash)

v0.8.12

Compare Source

What's Changed
  • Merged minor changes in from master
alloy-rs/rlp (alloy-rlp)

v0.3.13

Compare Source

v0.3.12

Compare Source

v0.3.11

Compare Source

v0.3.10

Compare Source

v0.3.9

Compare Source

dtolnay/async-trait (async-trait)

v0.1.89

Compare Source

v0.1.88

Compare Source

  • Fix lifetime bounding on generic parameters that have cfg (#​289)

v0.1.87

Compare Source

  • Documentation improvements

v0.1.86

Compare Source

  • Documentation improvements

v0.1.85

Compare Source

  • Omit Self: 'async_trait bound in impl when not needed by signature (#​284)

v0.1.84

Compare Source

  • Support impl Trait in return type (#​282)

v0.1.83

Compare Source

  • Prevent needless_arbitrary_self_type lint being produced in generated code (#​278)

v0.1.82

Compare Source

  • Prevent elided_named_lifetimes lint being produced in generated code (#​276)
akubera/bigdecimal-rs (bigdecimal)

v0.4.10

Compare Source

Changes

  • Add comparison operators between BigDecimal and primitive integers
  • Improve accuracy of initial iteration in square-root calculation
  • Only include necessary Rust files in the released package (no extra dev-scripts when downloading)

v0.4.9

Compare Source

Changes

  • Add methods BigDecimal::{powi, powi_with_context} for raising a decimal to a i64 power

    • the powi uses Default Context
  • Add methods BigDecimal::mul_with_context for efficient multiplication to fixed precision

    • uses precision and rounding-mode in the Context
  • Add method BigDecimal::decimal_digit_count, returning number of decimal digits (i.e. precision) of the number

  • Add method BigDecimal::order_of_magnitude, returning position of most significant digit of this decimal

  • Add method BigDecimal::is_one_quickcheck, returning Option<bool> indicating if the value is 1.0 if it can be calculated without allocating, or None if too large

    • Replaced is_one in multiplication methods when used for optimizations
      • Should test if that actually speeds it up
    • Eg value 1.00000000000000000000000000000000000000000 is stored internally as
      [4870020673419870208, 16114848830623546549, 293] E -41 and it's hard to tell this is equivalent to 1
  • Add optimizations to inverse

    • small powers of ten will simply flip their scale 1/10e-5 -> 10e5
    • convert to f64 to make initial guess when before iterative algorithm
  • Add Context::invert(&self, BigDecimalRef), equivalent to BigDecimal::inverse_with_context(&self, &ctx)

    • Still has a bug where rounding ignores sign, affecting floor/ceiling modes

v0.4.8

Compare Source

What's Changed

Full Changelog: akubera/bigdecimal-rs@v0.4.7...v0.4.8

v0.4.7

Compare Source

Changes

  • Fixed bug in BigDecimal::to_f64
  • Impl num_traits::ToPrimitive for BigDecimalRef
  • Added methods BigDecimal::{ToPlainString,WritePlainString}
  • Added Justfile to repo

v0.4.6

Compare Source

Changes

  • Fix error in formatting code that would skip "carrying the one" when rounding up series of nines, overflowing

  • Improved implementation of sqrt and cbrt

  • Uses consistent rounding implementations in formatting and arithmetic operations

  • Add new constructor methods BigDecimal::from_bigint & BigDecimal::from_biguint

magiclen/boyer-moore-magiclen (boyer-moore-magiclen)

v0.2.22

Compare Source

v0.2.21

Compare Source

chronotope/chrono (chrono)

v0.4.43: 0.4.43

Compare Source

What's Changed

v0.4.42: 0.4.42

Compare Source

What's Changed

v0.4.41

Compare Source

What's Changed

v0.4.40: 0.4.40

Compare Source

What's Changed

v0.4.39: 0.4.39

Compare Source

What's Changed

rodrimati1992/const_format_crates (const_format)

v0.2.35

Breaking change: bumped Minimum Supported Rust Version to Rust 1.60. This change is motivated by quote increasing its MSRV to 1.60.

v0.2.34

Now all features that used to require nightly only require Rust 1.83.0

Added "rust_1_83" feature that enables "rust_1_64" feature

Changed "fmt" feature to enable "rust_1_83" feature

Made many macros forward compatible with inline const patterns(when the "rust_1_83" feature is enabled):

  • concatc
  • concatcp
  • formatc
  • formatcp
  • map_ascii_case
  • str_get
  • str_index
  • str_repeat
  • str_replace

Added these macros:

  • str_splice_out
  • str_split_alt

v0.2.33

Fixed Rust Analyzer style warning for assertion macros.

colin-kiegel/rust-derive-builder (derive_builder)

v0.20.2

Compare Source

  • Allow unquoted expressions in builder(default = ...) #​331

v0.20.1

Compare Source

  • Forward default type params #​319
JelteF/derive_more (derive_more)

v0.99.20

Compare Source

v0.99.19

Compare Source

  • Add crate metadata for the Rust Playground.
rust-cli/env_logger (env_logger)

v0.10.2

Compare Source

Performance
  • Avoid extra UTF-8 validation performed in some cases
Fixes
  • Ensure custom pipes/stdout get flushed
  • Don't panic on broken pipes when color is disabled

v0.10.1

Compare Source

Performance
  • Avoid hashing directives and accessing RNG on startup
Documentation
  • Tweak RUST_LOG documentation
rust-lang/futures-rs (futures)

v0.3.32

Compare Source

  • Bump MSRV of utility crates to 1.71. (#​2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#​2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#​2929)
  • Add FuturesOrdered::clear (#​2927)
  • Add mpsc::*Receiver::recv (#​2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#​2944)
  • Implement FusedStream for sink::With (#​2948)
  • Add no_std support for shared (#​2868)
  • Make Mutex::new() const (#​2956)
  • Add #[clippy::has_significant_drop] to guards (#​2967)
  • Remove dependency to pin-utils (#​2929)
  • Remove dependency on num_cpus (#​2946)
  • Performance improvements (#​2983)
  • Documentation improvements (#​2925, #​2926, #​2940, #​2971)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in select!/select_biased! (#​2832)
    This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#​2848)
hyperium/hyper (hyper)

v0.14.32

Compare Source

Features

  • server: add Builder::max_pending_accept_reset_streams(num) option (a24f0c0)

Bug Fixes

  • http1: fix intermittent panic parsing partial headers (0f274ae)

New Contributors

Full Changelog: hyperium/hyper@v0.14.31...v0.14.32

v0.14.31

Compare Source

Bug Fixes

  • http1: improve performance of parsing sequentially partial messages (97b595e)
console-rs/indicatif (indicatif)

v0.17.11

Compare Source

What's Changed

v0.17.10

Compare Source

What's Changed

With some great performance improvements from @​jaheba.

v0.17.9

Compare Source

What's Changed

rust-lang/libc (libc)

v0.2.182

Compare Source

Added

v0.2.181

Compare Source

Added
  • Apple: Add MADV_ZERO (#​4924)
  • Redox: Add makedev, major, and minor (#​4928)
  • GLibc: Add PTRACE_SET_SYSCALL_INFO (#​4933)
  • OpenBSD: Add more kqueue related constants for (#​4945)
  • Linux: add CAN error types (#​4944)
  • OpenBSD: Add siginfo_t::si_status (#​4946)
  • QNX NTO: Add max_align_t (#​4927)
  • Illumos: Add _CS_PATH (#​4956)
  • OpenBSD: add ppoll (#​4957)
Fixed
  • Breaking: Redox: Fix the type of dev_t (#​4928)
  • AIX: Change 'tv_nsec' of 'struct timespec' to type 'c_long' (#​4931)
  • AIX: Use 'struct st_timespec' in 'struct stat{,64}' (#​4931)
  • Glibc: Link old version of tc{g,s}etattr (#​4938)
  • Glibc: Link the correct version of cf{g,s}et{i,o}speed on mips{32,64}r6 (#​4938)
  • OpenBSD: Fix constness of tm.tm_zone (#​4948)
  • OpenBSD: Fix the definition of ptrace_thread_state (#​4947)
  • QuRT: Fix type visibility and defs (#​4932)
  • Redox: Fix values for PTHREAD_MUTEX_{NORMAL, RECURSIVE} (#​4943)
  • Various: Mark additional fields as private padding (#​4922)
Changed
  • Fuchsia: Update SO_* constants (#​4937)
  • Revert "musl: convert inline timespecs to timespec" (resolves build issues on targets only supported by Musl 1.2.3+ ) (#​4958)

v0.2.180

Compare Source

Added
  • QNX: Add missing BPF and ifreq structures (#​4769)
Fixed
  • Linux, L4Re: address soundness issues of CMSG_NXTHDR (#​4903)
  • Linux-like: Handle zero-sized payload differences in CMSG_NXTHDR (#​4903)
  • Musl: Fix incorrect definitions of struct stat on some 32-bit architectures (#​4914)
  • NetBSD: RISC-V 64: Correct mcontext type definitions (#​4886)
  • uClibc: Re-enable __SIZEOF_PTHREAD_COND_T on non-L4Re uclibc (#​4915)
  • uClibc: Restructure Linux netlink module to resolve build errors (#​4915)

v0.2.179

Compare Source

With this release, we now have unstable support for 64-bit time_t on 32-bit
platforms with both Musl and Glibc. Testing is appreciated!

For now, these can be enabled by setting environment variables during build:

RUST_LIBC_UNSTABLE_MUSL_V1_2_3=1
RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64

Note that the exact configuration will change in the future. Setting the
MUSL_V1_2_3 variable also enables some newer API unrelated to time_t.

Added
  • L4Re: Add uclibc aarch64 support (#​4479)
  • Linux, Android: Add a generic definition for XCASE (#​4847)
  • Linux-like: Add NAME_MAX (#​4888)
  • Linux: Add AT_EXECVE_CHECK (#​4422)
  • Linux: Add the SUN_LEN macro (#​4269)
  • Linux: add getitimer and setitimer (#​4890)
  • Linux: add pthread_tryjoin_n and pthread_timedjoin_np (#​4887)
  • Musl: Add unstable support for 64-bit time_t on 32-bit platforms (#​4463)
  • NetBSD, OpenBSD: Add interface LINK_STATE_* definitions from sys/net/if.h (#​4751)
  • QuRT: Add support for Qualcomm QuRT (#​4845)
  • Types: Add Padding::uninit() (#​4862)
Fixed
  • Glibc: Link old version of cf{g,s}et{i,o}speed (#​4882)
  • L4Re: Fixes for pthread (#​4479)
  • L4re: Fix a wide variety of incorrect definitions (#​4479)
  • Musl: Fix the value of CPU_SETSIZE on musl 1.2+ (#​4865)
  • Musl: RISC-V: fix public padding fields in stat/stat64 (#​4463)
  • Musl: s390x: Fix definition of SIGSTKSZ/MINSIGSTKSZ (#​4884)
  • NetBSD: Arm: Fix PT_{GET,SET}FPREGS, _REG_TIPDR, and _REG_{LR,SP} (#​4899)
  • NetBSD: Fix if_msghdr alignment (#​4902)
  • NetBSD: Fix siginfo_t layout on 32-bit platforms (#​4904)
  • NetBSD: change definition of pthread_spin_t to allow arch redefinition. (#​4899)
  • Newlib: Fix ambiguous glob exports and other warnings for Vita and 3DS (#​4875)
  • QNX: Fix build error (#​4879)
Changed
  • CI: Update CI images to FreeBSD 15.0-release (#​4857)
  • L4Re: Make pthread struct fields private (#​4876)
  • Linux, Fuchsia: Mark mq_attr padding area as such (#​4858)
  • Types: Wrap a number of private fields in the Padding type (#​4862)
Removed
  • Build: Remove RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 (#​4865)
  • WASI: Remove nonexistent clocks (#​4880)

v0.2.178

Compare Source

Added
  • BSD: Add issetugid (#​4744)
  • Cygwin: Add missing utmp/x.h, grp.h, and stdio.h interfaces (#​4827)
  • Linux s390x musl: Add __psw_t/fprefset_t/*context_t (#​4726)
  • Linux, Android: Add definition for IUCLC (#​4846)
  • Linux, FreeBSD: Add AT_HWCAP{3,4} (#​4734)
  • Linux: Add definitions from linux/can/bcm.h (#​4683)
  • Linux: Add syscalls 451-469 for m68k (#​4850)
  • Linux: PowerPC: Add 'ucontext.h' definitions (#​4696)
  • NetBSD: Define eventfd (#​4830)
  • Newlib: Add missing constants from unistd.h (#​4811)
  • QNX NTO: Add cfmakeraw (#​4704)
  • QNX NTO: Add cfsetspeed (#​4704)
  • Redox: Add getresgid and getresuid (#​4752)
  • Redox: Add setresgid and setresuid (#​4752)
  • VxWorks: Add definitions from select.h, stat.h, poll.h, ttycom.h, utsname.h, resource.h, mman.h, udp.h, in.h, in6.h, if.h, fnmatch.h, and sioLibCommon.h (#​4781)
  • VxWorks: Add missing defines/functions needed by rust stdlib (#​4779)
  • WASI: Add more definitions for libstd (#​4747)
Deprecated:
  • Apple: Deprecate TIOCREMOTE (#​4764)
Fixed:

Note that there were a large number of fixes on NetBSD for this libc release, some of which include minor breakage.

  • AIX: Change errno EWOULDBLOCK to make it an alias of EAGAIN (#​4790)
  • AIX: Resolve function comparison and unnecessary_transmutes warnings (#​4780)
  • Apple: Correct the value of SF_SETTABLE (#​4764)
  • DragonflyBSD: Fix the type of mcontext_t.mc_fpregs (#)
  • EspIDF: Fix the duplicate definition of gethostname (#​4773)
  • L4Re: Update available pthread API (#​4836)
  • Linux: Correct the value of NFT_MSG_MAX (#​4761)
  • Linux: Remove incorrect repr(align(8)) for canxl_frame (#​4760)
  • Make eventfd argument names match OS docs/headers (#​4830)
  • NetBSD: Account for upstream changes to ptrace with LWP (#​4782)
  • NetBSD: Correct ipc_perm, split from OpenBSD as ipc.rs (#​4782)
  • NetBSD: Correct a number of symbol link names (#​4782)
  • NetBSD: Correct the type of kinfo_vmentry.kve_path (#)
  • NetBSD: Fix uucred.cr_ngroups from int to short (#​4782)
  • NetBSD: Fix the type of kevent.udata (#​4782)
  • NetBSD: Fix the type of mcontext_t.__fpregs (#​4782)
  • NetBSD: Fix the value of PT_SUSPEND (#​4782)
  • NetBSD: Fix the values of FNM_* constants (#​4782)
  • NetBSD: Increase the size of sockaddr_dl.sdl_data from 12 to 24 (#​4782)
  • NetBSD: Introduce if_.rs, fix the definition of ifreq (#​4782)
  • NetBSD: Introduce time.rs, fix the values of CLOCK_*_CPUTIME_ID (#​4782)
  • NetBSD: Introduce timex.rs (#​4782)
  • NetBSD: Introduce types.rs, correct the definition of lwpid_t (#​4782)
  • NetBSD: Introduce utmp_.rs, correct the definition of lastlog (#​4782)
  • NetBSD: Introduce utmpx_.rs, correct utmpx definitions (#​4782)
  • NetBSD: Make _cpuset an extern type (#​4782)
  • NetBSD: RISC-V 64: Fix the mcontext types (#​4782)
  • Nuttx: Resolve warnings (#​4773)
  • OHOS: Don't emit duplicate lfs64 definitions (#​4804)
  • Redox: Fix the type of pid_t (#​4825)
  • WASI: Gate __wasilibc_register_preopened_fd (#​4837)
  • Wali: Fix unknown config (#​4773)
Changed
  • AIX: Declare field 'tv_nsec' of structure 'timespec' as 'i32' in both 32-bit and 64-bit modes (#​4750)
  • DragonFly: Avoid usage of thread_local (#​3653)
  • Linux: Update the definition for ucontext_t and unskip its tests (#​4760)
  • MinGW: Set L_tmpnam and TMP_MAX to the UCRT value (#​4566)
  • WASI: More closely align pthread type reprs (#​4747)
  • Simplify rustc-check-cfg emission in build.rs (#​4724)
  • Transition a number of definitions to the new source structure (internal change)
Removed
  • MIPS Musl: Remove rogue definition of SIGSTKFLT (#​4749)
  • NetBSD: Make statvfs.f_spare non-public (#​4782)
  • NetBSD: Remove BPF constants (#​4782)
  • NetBSD: Remove *_MAXID constants and AT_SUN_LDPGSIZE (#​4782)
  • NetBSD: Remove IFF_NOTRAILERS (#​4782)
  • NetBSD: Remove vm_size_t (#​4782)
  • NetBSD: Replace REG_ENOSYS with REG_ILLSEQ (#​4782)

v0.2.177

[Compare


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (rebase) August 29, 2024 06:14
@renovate
Copy link
Author

renovate bot commented Aug 29, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path apps/eth-engine/Cargo.toml --package ahash@0.8.11 --precise 0.8.12
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path apps/eth-order-fill-service/Cargo.toml --package bigdecimal@0.4.5 --precise 0.4.10
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/core/Cargo.toml --package derive_builder@0.20.0 --precise 0.20.2
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-classifier/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-core/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-database/Cargo.toml --package ahash@0.8.11 --precise 0.8.12
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-inspect/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-libmdbx/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-metrics/Cargo.toml --package tikv-jemalloc-ctl@0.5.4 --precise 0.5.4
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-pricing/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-pricing/pricing-test-utils/Cargo.toml --package criterion@0.5.1 --precise 0.5.1
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/eth-engine-types/Cargo.toml --package ahash@0.8.11 --precise 0.8.12
    Updating crates.io index
error: failed to select a version for `hashbrown`.
    ... required by package `schnellru v0.2.4`
    ... which satisfies dependency `schnellru = "^0.2.4"` of package `reaper-eth-engine-database v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-database)`
    ... which satisfies path dependency `reaper-eth-engine-database` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`
versions that meet the requirements `=0.13.2` are: 0.13.2

all possible versions conflict with previously selected packages.

  previously selected package `hashbrown v0.13.1`
    ... which satisfies dependency `hashbrown = "=0.13.1"` of package `metrics-util v0.15.1`
    ... which satisfies dependency `metrics-util = "^0.15.1"` of package `reaper-eth-engine-metrics v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/crates/eth-engine-metrics)`
    ... which satisfies path dependency `reaper-eth-engine-metrics` (locked to 0.1.0) of package `reaper-eth-engine v0.1.0 (/tmp/renovate/repos/github/storm-software/reaper/apps/eth-engine)`

failed to select a version for `hashbrown` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 6 times, most recently from e543ce3 to 724d481 Compare September 5, 2024 11:07
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from 758f919 to 44665ea Compare September 9, 2024 20:52
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 44665ea to 116ae12 Compare September 25, 2024 02:53
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from c026042 to d8b8046 Compare October 9, 2024 02:07
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from c49fc3d to 53a5981 Compare October 19, 2024 05:54
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from fe3924c to 9851d24 Compare October 30, 2024 06:02
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 03da3db to 4fde860 Compare November 8, 2024 09:04
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 5c9de07 to 0dd9c8a Compare November 17, 2024 02:03
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 0dd9c8a to 6a14f08 Compare November 27, 2024 00:02
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 6a14f08 to 27ffe18 Compare February 4, 2025 04:01
@renovate renovate bot changed the title deps(monorepo): update cargo pre-1.0 packages (patch) chore(monorepo): update cargo pre-1.0 packages (patch) Feb 4, 2025
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 27ffe18 to 53d78e7 Compare February 6, 2025 07:20
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 53d78e7 to 3749837 Compare February 22, 2025 03:50
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from d6ee9ea to 35008d9 Compare September 3, 2025 19:59
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 35008d9 to 24218ac Compare September 9, 2025 15:57
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from b612819 to f429d35 Compare September 24, 2025 04:17
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from 6614bb4 to 4f77161 Compare October 10, 2025 03:37
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 7a8e5cf to 746d8d6 Compare October 20, 2025 07:47
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 746d8d6 to ffdc662 Compare November 24, 2025 11:58
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from ffdc662 to af9079a Compare December 3, 2025 00:00
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from af9079a to f7ca6bd Compare December 11, 2025 23:34
@renovate renovate bot requested a review from a team December 11, 2025 23:34
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from 61c453b to 1344a31 Compare December 23, 2025 12:03
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 2531af9 to ea55558 Compare January 3, 2026 12:15
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from be8e331 to 57fc0d7 Compare January 15, 2026 23:07
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 9a042cf to d330c5f Compare January 26, 2026 08:02
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 6bd152a to d375c68 Compare February 6, 2026 11:38
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 2 times, most recently from 6e8def0 to 1e06045 Compare February 14, 2026 07:48
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 1e06045 to 588cbb1 Compare February 16, 2026 04:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants