Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Aug 29, 2024

Copy link
Copy Markdown

ℹ️ 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.16
alloy-rlp-derive (source) workspace.dependencies patch 0.3.40.3.16
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.92
async-trait workspace.dependencies patch 0.1.730.1.92
bigdecimal dependencies patch 0.4.50.4.10
boyer-moore-magiclen (source) dependencies patch 0.2.160.2.24
c-kzg workspace.dependencies patch 0.4.00.4.2
chrono dependencies patch 0.4.350.4.45
chrono workspace.dependencies patch 0.4.190.4.45
const_format dependencies patch 0.2.320.2.36
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.14
futures (source) workspace.dependencies patch 0.3.280.3.34
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.189
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.16
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.21
statrs dependencies patch 0.160.16.1
statrs dev-dependencies patch 0.160.16.1
strum_macros dependencies patch 0.250.25.3
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.16

Compare Source

What's Changed
New Contributors

Full Changelog: alloy-rs/rlp@v0.3.15...v0.3.16

v0.3.15

Compare Source

v0.3.14

Compare Source

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.92

Compare Source

  • Resolve double_must_use clippy lint in generated code (#​303)

v0.1.91

Compare Source

v0.1.90

Compare Source

  • Update to syn 3

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.24

Compare Source

v0.2.23

Compare Source

v0.2.22

Compare Source

v0.2.21

Compare Source

chronotope/chrono (chrono)

v0.4.45: 0.4.45

Compare Source

What's Changed

v0.4.44: 0.4.44

Compare Source

What's Changed

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.36

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

Now the "rust_1_64" feature is effectively always enabled, so these items are always enabled:

  • const_format::str_split

Deprecated these items because their replacements now take constant time to run:

  • const_format::fmt::StrWriter::as_bytes_alt: superceeded by as_bytes
  • const_format::fmt::StrWriter::as_str_alt: superceeded by as_str
  • const_format::fmt::StrWriterMut::as_bytes_alt: superceeded by as_bytes
  • const_format::fmt::StrWriterMut::as_str_alt: superceeded by as_str
  • const_format::utils::slice_up_to_len_alt: superceeded by slice_up_to_len

Changed these methods from being conditionally const (by requiring the "rust_1_64" feature to be const) to being unconditionally const:

  • const_format::fmt::StrWriter::as_bytes
  • const_format::fmt::StrWriter::as_str
  • const_format::fmt::StrWriterMut::as_bytes
  • const_format::fmt::StrWriterMut::as_str

Changed this method to be const:

  • const_format::AsciiStr::as_str

Fixed nightly 2026-04-09 compatibility when cargo update -Z minimal-versions is used by bumping konst internal dependency to "0.2.20" version

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
eyre-rs/eyre (eyre)

v0.6.14

Compare Source

v0.6.13

Compare Source

rust-lang/futures-rs (futures)

v0.3.34

Compare Source

v0.3.33

Compare Source

  • Fix ReadLine's soundness issue regarding to exception safety. (#​3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#​3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#​3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#​3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#​3007)
  • Re-export alloc::task::Wake. (#​3010)
  • Update spin to 0.12. (#​3014)

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.189

Compare Source

Added
  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#​5270)
  • Linux SPARC: Enable the clone3 syscall (#​4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#​5274)
Deprecated
  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)
Fixed
  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#​5245)
  • Windows: Add back link names for time-related symbols (#​5300)

v0.2.188

Compare Source

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync
guarantees about DIR (or other extern types), but this caused some crates to break.
The traits are added back for now to allow time to migrate, but will be removed again
in the future; please make sure your crates are not relying on libc::DIR: Send or
libc::DIR: Sync.

v0.2.187

Compare Source

This release contains a number of improvements related to 64-bit time_t configuration.
Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced
with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to
specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits

  • uClibc now supports a similar configuration option:

    RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'

As a reminder, these options are under active development and may change in the future
(hence the "unstable" in the name). It likely that we will harmonize everything under a
single configuration option before considering them stable.

Support
  • Add support for aarch64-unknown-linux-pauthtest (#​5065)
  • Add support for new QNX targets (#​5241)
  • Better document breaking change policy and recommended usage (#​5179)
Added
  • Android: Add POSIX_SPAWN_* constants (#​5104)
  • Android: Add getpwent, setpwent, and endpwent (#​5160)
  • Android: Add preadv2 and pwritev2 (#​5157)
  • Android: Add seccomp_notif* structures (#​5224)
  • Android: Add timer_[create, delete, getoverrun, gettime, settime] (#​5108)
  • Apple: Add PROC_PIDT_SHORTBSDINFO and proc_bsdshortinfo (#​5110)
  • Apple: Add SIOC* constants from sockio.h (#​5263)
  • Apple: Add _IOR, _IOW, _IOWR (#​5264)
  • Apple: Add bpf_program and bpf_insn (#​5235)
  • Apple: Add additional kqueue constants (#​5077)
  • Apple: Update vm_statistics64 with recently added fields (#​5253)
  • Apple: add IN6_IFF_* and SIOCGIFAFLAG_IN6 (#​5239)
  • Dragonfly: Add O_*, POSIX_FADV_*, NI*, and a few other missing constants (#​5116)
  • Dragonfly: add fdatasync, dlvsym, reallocarray, qsort_r, pthread_*affinity_np, ftok, extattr_*, and dup3 (#​5116)
  • Emscripten: Add in6_pktinfo (#​5256)
  • FreeBSD: Add SOL_LOCAL (#​5185)
  • FreeBSD: Add DLT_* constants (#​5235)
  • FreeBSD: Add PROC_LOGSIGEXIT_* and PPROT_* (#​4657)
  • FreeBSD: Add SO_RERROR (#​5260)
  • FreeBSD: add IN6_IFF_*, in6_ifreq, and SIOCGIFAFLAG_IN6 (#​5239)
  • FreeBSD: add _IO* helpers from sys/ioccom.h (#​5239)
  • Glibc: Add PTHREAD_*_MUTEX_INITIALIZER_NP for riscv64 (#​5094)
  • Glibc: Add new fields to struct tcp_info (#​5215)
  • Linux: Add OPEN_TREE_NAMESPACE (#​5145)
  • Linux: Add SECCOMP_IOCTL_* constants (#​5224)
  • Linux: Add SO_DETACH_REUSEPORT_BPF (#​5081)
  • Linux: Add futex_waitv (#​5125)
  • Linux: Add constants for fsopen, fsconfig, fsmount, and fspick (#​5145)
  • Linux: Add fields to statx present since 6.16 (#​4621)
  • Linux: Add network entry API (#​5049)
  • Linux: add ifaddrmsg and rtattr (#​5234)
  • Linux: add sockaddr_iucv (#​5041)
  • MacOS: Add ENOTCAPABLE (#​4925)
  • Musl: Add renameat2 (#​5113)
  • NuttX: Add F_SETFD (#​5258)
  • NuttX: Add POLLRD* and POLLWR* constants (#​5258)
  • NuttX: Add SO_KEEPALIVE and TCP keepalive constants (#​5111)
  • NuttX: Add TCP_MAXSEG (#​5258)
  • NuttX: Add eventfd and EFD_* constants (#​5258)
  • NuttX: Add pipe2 (#​5258)
  • NuttX: Add strerror_r (#​5258)
  • NuttX: Add netinet structs and constants (#​5258)
  • NuttX: Add socket structs, functions and constants (#​5258)
  • QuRT: Add POSIX timer functions (#​5091)
  • QuRT: Add missing pthread functions from QuRT SDK headers (#​5091)
  • QuRT: Add missing unistd process and file functions (#​5091)
  • QuRT: Add mqueue subsystem (message queues, select/pselect) ([#​5091](https://red

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • "after 2am and before 3am"
  • 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

renovate Bot commented Aug 29, 2024

Copy link
Copy Markdown
Author

⚠️ 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 --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-order-fill-service/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 crates/core/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 crates/eth-engine-classifier/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 crates/eth-engine-core/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 crates/eth-engine-database/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 crates/eth-engine-inspect/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 crates/eth-engine-libmdbx/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 crates/eth-engine-metrics/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 crates/eth-engine-pricing/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 crates/eth-engine-pricing/pricing-test-utils/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 crates/eth-engine-types/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

@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 from 45572d4 to f8dc95b Compare May 3, 2025 04:03
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from f8dc95b to b425b44 Compare May 10, 2025 08:13
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from b425b44 to 761e301 Compare May 17, 2025 11:33
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 3 times, most recently from 5c44340 to 634b85d Compare June 6, 2025 15:46
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 634b85d to 4fbd27a Compare June 14, 2025 11:56
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 4fbd27a to 4c0965d Compare June 21, 2025 12:12
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 4c0965d to 3d740d5 Compare July 12, 2025 12:07
@renovate
renovate Bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 3d740d5 to 4ff3e20 Compare August 14, 2025 23:52
@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
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