Skip to content

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.12
alloy-rlp-derive (source) workspace.dependencies patch 0.3.40.3.12
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.42
chrono workspace.dependencies patch 0.4.190.4.42
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.31
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.179
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.12
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
time (source) dependencies patch 0.3.360.3.44
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.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.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.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.179

Compare Source

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 Source

Added
  • Apple: Add TIOCGETA, TIOCSETA, TIOCSETAW, TIOCSETAF constants (#​4736)
  • Apple: Add pthread_cond_timedwait_relative_np (#​4719)
  • BSDs: Add _CS_PATH constant (#​4738)
  • Linux-like: Add SIGEMT for mips* and sparc* architectures (#​4730)
  • OpenBSD: Add elf_aux_info (#​4729)
  • Redox: Add more sysconf constants (#​4728)
  • Windows: Add wcsnlen (#​4721)
Changed
  • WASIP2: Invert conditional to include p2 APIs (#​4733)

v0.2.176

Compare Source

Support
  • The default FreeBSD version has been raised from 11 to 12. This matches rustc since 1.78. (#​2406)
  • Debug is now always implemented, rather than being gated behind the extra_traits feature. (#​4624)
Added
  • AIX: Restore some non-POSIX functions guarded by the _KERNEL macro. (#​4607)
  • FreeBSD 14: Add st_fileref to struct stat (#​4642)
  • Haiku: Add the accept4 POSIX call (#​4586)
  • Introduce a wrapper for representing padding (#​4632)
  • Linux: Add EM_RISCV (#​4659)
  • Linux: Add MS_NOSYMFOLLOW (#​4389)
  • Linux: Add backtrace_symbols(_fd) (#​4668)
  • Linux: Add missing SOL_PACKET optnames (#​4669)
  • Musl s390x: Add SYS_mseal (#​4549)
  • NuttX: Add __errno (#​4687)
  • Redox: Add dirfd, VDISABLE, and resource consts (#​4660)
  • Redox: Add more resource.h, fcntl.h constants (#​4666)
  • Redox: Enable strftime and mkostemp[s] (#​4629)
  • Unix, Windows: Add qsort_r (Unix), and qsort(_s) (Windows) (#​4677)
  • Unix: Add dlvsym for Linux-gnu, FreeBSD, and NetBSD (#​4671)
  • Unix: Add sigqueue (#​4620)
Changed
  • FreeBSD 15: Mark kinfo_proc as non-exhaustive (#​4553)
  • FreeBSD: Set the ELF symbol version for readdir_r (#​4694)
  • Linux: Correct the config for whether or not epoll_event is packed (#​4639)
  • Tests: Replace the old ctest with the much more reliable new implementation (#​4655 and many related PRs)
Fixed
  • AIX: Fix the type of the 4th arguement of getgrnam_r ([#​4656](#​4656
  • FreeBSD: Limit P_IDLEPROC to FreeBSD 15 (#​4640)
  • FreeBSD: Limit mcontext_t::mc_tlsbase to FreeBSD 15 (#​4640)
  • FreeBSD: Update gating of mcontext_t.mc_tlsbase (#​4703)
  • Musl s390x: Correct the definition of statfs[64] (#​4549)
  • Musl s390x: Make fpreg_t a union (#​4549)
  • Redox: Fix the types of gid_t and uid_t (#​4689)
  • Redox: Fix the value of MAP_FIXED (#​4684)
Deprecated
  • Apple: Correct the deprecated attribute for iconv (a97a0b53)
  • FreeBSD: Deprecate TIOCMGDTRWAIT and TIOCMSDTRWAIT (#​4685)
Removed
  • FreeBSD: Remove JAIL_{GET,SET}_MASK, _MC_FLAG_MASK (#​4691)

v0.2.175

Compare Source

Added
  • AIX: Add getpeereid (#​4524)
  • AIX: Add struct ld_info and friends (#​4578)
  • AIX: Retore struct winsize (#​4577)
  • Android: Add UDP socket option constants (#​4619)
  • Android: Add CLONE_CLEAR_SIGHAND and CLONE_INTO_CGROUP (#​4502)
  • Android: Add more prctl constants (#​4531)
  • FreeBSD Add further TCP stack-related constants (#​4196)
  • FreeBSD x86-64: Add mcontext_t.mc_tlsbase (#​4503)
  • FreeBSD15: Add kinfo_proc.ki_uerrmsg (#​4552)
  • FreeBSD: Add in_conninfo (#​4482)
  • FreeBSD: Add xinpgen and related types (#​4482)
  • FreeBSD: Add xktls_session (#​4482)
  • Haiku: Add functionality from libbsd (#​4221)
  • Linux: Add SECBIT_* (#​4480)
  • NetBSD, OpenBSD: Export ioctl request generator macros (#​4460)
  • NetBSD: Add ptsname_r (#​4608)
  • RISCV32: Add time-related syscalls (#​4612)
  • Solarish: Add strftime* (#​4453)
  • linux: Add EXEC_RESTRICT_* and EXEC_DENY_* (#​4545)
Changed
  • AIX: Add const to signatures to be consistent with other platforms (#​4563)
Fixed
  • AIX: Fix the type of struct statvfs.f_fsid (#​4576)
  • AIX: Fix the type of constants for the ioctl request argument (#​4582)
  • AIX: Fix the types of stat{,64}.st_*tim (#​4597)
  • AIX: Use unique errno values (#​4507)
  • Build: Fix an incorrect target_os -> target_arch check (#​4550)
  • FreeBSD: Fix the type of xktls_session_onedir.ifnet (#​4552)
  • Mips64 musl: Fix the type of nlink_t (#​4509)
  • Mips64 musl: Use a special MIPS definition of stack_t (#​4528)
  • Mips64: Fix SI_TIMER, SI_MESGQ and SI_ASYNCIO definitions (#​4529)
  • Musl Mips64: Swap the order of si_errno and si_code in siginfo_t (#​4530)
  • Musl Mips64: Use a special MIPS definition of statfs (#​4527)
  • Musl: Fix the definition of fanotify_event_metadata (#​4510)
  • NetBSD: Correct enum fae_action to be #[repr(C)] (#​60a8cfd5)
  • PSP: Correct char -> c_char (eaab4fc3)
  • PowerPC musl: Fix termios definitions (#​4518)
  • PowerPC musl: Fix the definition of EDEADLK (#​4517)
  • PowerPC musl: Fix the definition of NCCS (#​4513)
  • PowerPC musl: Fix the definitions of MAP_LOCKED and MAP_NORESERVE (#​4516)
  • PowerPC64 musl: Fix the definition of shmid_ds (#​4519)
Deprecated
  • Linux: MAP_32BIT is only defined on x86 on non-x86 architectures (#​4511)
Removed
  • AIX: Remove duplicate constant definitions FIND and ENTER (#​4588)
  • s390x musl: Remove O_FSYNC (#​4515)
  • s390x musl: Remove RTLD_DEEPBIND (#​4515)

v0.2.174

Compare Source

Added
  • Linux: Make pidfd_info fields pub (#​4487)
Fixed
  • Gnu x32: Add missing timespec.tv_nsec (#​4497)
  • NuttX: Use nlink_t type for st_nlink in struct stat definition (#​4483)
Other
  • Allow new unpredictable_function_pointer_comparisons lints (#​4489)
  • OpenBSD: Fix some clippy warnings to use pointer::cast. (#​4490)
  • Remove unessecary semicolons from definitions of CMSG_NXTHDR. (#​4492)

v0.2.173

Compare Source

Added
  • AIX: Add an AIX triple to Cargo.toml for doc (#​4475)
  • FreeBSD: Add the SO_SPLICE socket option support for FreeBSD >= 14.2 (#​4451)
  • Linux GNU: Prepare for supporting _TIME_BITS=64 (#​4433)
  • Linux: Add constant PACKET_IGNORE_OUTGOING (#​4319)
  • Linux: Add constants and types for nsfs ioctls (#​4436)
  • Linux: Add constants for Memory-Deny-Write-Execute prctls (#​4400)
  • Linux: Add constants from linux/cn_proc.h and linux/connector.h ([#​4434](https://redirect.github.com/rust-lang/libc/pull

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
    Updating git repository `https://github.com/SorellaLabs/clickhouse.rs`
From https://github.com/SorellaLabs/clickhouse.rs
 * [new ref]         21a21ca2f9aa544189b45509356e1e5cee1176d1 -> refs/commit/21a21ca2f9aa544189b45509356e1e5cee1176d1
    Updating git repository `https://github.com/SorellaLabs/db-interfaces`
From https://github.com/SorellaLabs/db-interfaces
 * [new ref]         12892c736a6e041ab5698bb73361cdcdac60a5f2 -> refs/commit/12892c736a6e041ab5698bb73361cdcdac60a5f2
    Updating git repository `https://github.com/paradigmxyz/reth`
From https://github.com/paradigmxyz/reth
 * [new ref]             ac29b4b73be382caf2a2462d426e6bad75e18af9 -> refs/commit/ac29b4b73be382caf2a2462d426e6bad75e18af9
    Updating git repository `https://github.com/alloy-rs/alloy.git`
From https://github.com/alloy-rs/alloy
 * [new ref]         39b869585955d95e9c64c3e1b66f16432ae4f132 -> refs/commit/39b869585955d95e9c64c3e1b66f16432ae4f132
    Updating git repository `https://github.com/SorellaLabs/redefined`
From https://github.com/SorellaLabs/redefined
 * [new ref]         d00ea479224a2d50ed525aec93591cf497b3f852 -> refs/commit/d00ea479224a2d50ed525aec93591cf497b3f852
    Updating git repository `https://github.com/rkyv/rkyv.git`
From https://github.com/rkyv/rkyv
 * [new ref]         7b883203b216fcfc594077a5785555d2b52061c9 -> refs/commit/7b883203b216fcfc594077a5785555d2b52061c9
    Updating git repository `https://github.com/paradigmxyz/evm-inspectors`
From https://github.com/paradigmxyz/evm-inspectors
 * [new ref]         dc614eec85ee4d4af938865b121fad58ec7dad5f -> refs/commit/dc614eec85ee4d4af938865b121fad58ec7dad5f
    Updating git repository `https://github.com/sigp/discv5`
From https://github.com/sigp/discv5
 * [new ref]         04ac0042a345a9edf93b090007e5d31c008261ed -> refs/commit/04ac0042a345a9edf93b090007e5d31c008261ed
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 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 from 1344a31 to 2531af9 Compare December 28, 2025 11:35
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch 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.

1 participant