Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Updates the requirements on bincode, rand, rand_chacha, jsonrpsee, revm, alloy-primitives, alloy-trie, wasmer, wasmparser, cairo-vm, lambdaworks-math, lambdaworks-crypto, starknet-crypto, winterfell, winter-math and winter-crypto to permit the latest version.
Updates bincode to 3.0.0

Commits

Updates rand to 0.10.0

Changelog

Sourced from rand's changelog.

[0.10.0] - 2026-02-08

Changes

  • The dependency on rand_chacha has been replaced with a dependency on chacha20. This changes the implementation behind StdRng, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in chacha20 instead of rand_chacha (#1642).
  • Rename fns IndexedRandom::choose_multiple -> sample, choose_multiple_array -> sample_array, choose_multiple_weighted -> sample_weighted, struct SliceChooseIter -> IndexedSamples and fns IteratorRandom::choose_multiple -> sample, choose_multiple_fill -> sample_fill (#1632)
  • Use Edition 2024 and MSRV 1.85 (#1653)
  • Let Fill be implemented for element types, not sliceable types (#1652)
  • Fix OsError::raw_os_error on UEFI targets by returning Option<usize> (#1665)
  • Replace fn TryRngCore::read_adapter(..) -> RngReadAdapter with simpler struct RngReader (#1669)
  • Remove fns SeedableRng::from_os_rng, try_from_os_rng (#1674)
  • Remove Clone support for StdRng, ReseedingRng (#1677)
  • Use postcard instead of bincode to test the serde feature (#1693)
  • Avoid excessive allocation in IteratorRandom::sample when amount is much larger than iterator size (#1695)
  • Rename os_rng -> sys_rng, OsRng -> SysRng, OsError -> SysError (#1697)
  • Rename Rng -> RngExt as upstream rand_core has renamed RngCore -> Rng (#1717)

Additions

  • Add fns IndexedRandom::choose_iter, choose_weighted_iter (#1632)
  • Pub export Xoshiro128PlusPlus, Xoshiro256PlusPlus prngs (#1649)
  • Pub export ChaCha8Rng, ChaCha12Rng, ChaCha20Rng behind chacha feature (#1659)
  • Fn rand::make_rng() -> R where R: SeedableRng (#1734)

Removals

  • Removed ReseedingRng (#1722)
  • Removed unused feature "nightly" (#1732)
  • Removed feature small_rng (#1732)

#1632: rust-random/rand#1632 #1642: rust-random/rand#1642 #1649: rust-random/rand#1649 #1652: rust-random/rand#1652 #1653: rust-random/rand#1653 #1659: rust-random/rand#1659 #1665: rust-random/rand#1665 #1669: rust-random/rand#1669 #1674: rust-random/rand#1674 #1677: rust-random/rand#1677 #1693: rust-random/rand#1693 #1695: rust-random/rand#1695 #1697: rust-random/rand#1697 #1717: rust-random/rand#1717 #1722: rust-random/rand#1722 #1732: rust-random/rand#1732 #1734: rust-random/rand#1734

[0.9.2] - 2025-07-20

Deprecated

  • Deprecate rand::rngs::mock module and StepRng generator (#1634)

... (truncated)

Commits

Updates rand_chacha to 0.9.0

Release notes

Sourced from rand_chacha's releases.

0.9.0

Upgrade guide

See https://rust-random.github.io/book/update-0.9.html

Changelog

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)

... (truncated)

Changelog

Sourced from rand_chacha's changelog.

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

... (truncated)

Commits

Updates jsonrpsee to 0.26.0

Release notes

Sourced from jsonrpsee's releases.

v0.26.0

[v0.26.0] - 2025-08-11

This is just a small release; the only breaking change is the addition of max_frame_size to WsTransportClientBuilder, which necessitates a minor version bump.

The other changes are as follows:

[Changed]

  • Fix new Rust 1.89 lifetime warnings and impl ToRpcParams on serde_json::Map (#1594)
  • feat(keepalive): expose tcp keep-alive options (#1583)
  • chore: expose TowerServiceNoHttp type (#1588)
  • chore(deps): update socket2 requirement from 0.5.1 to 0.6.0 (#1587)
  • Allow max websocket frame size to be set (#1585)
  • chore(deps): update pprof requirement from 0.14 to 0.15 (#1577)
  • Expose jsonrpsee_http_client::RpcService (#1574)

[Fixed]

  • fix: Remove username and password from URL after building Authorization header (#1581)
Changelog

Sourced from jsonrpsee's changelog.

[v0.26.0] - 2025-08-11

This is just a small release; the only breaking change is the addition of max_frame_size to WsTransportClientBuilder, which necessitates a minor version bump.

The other changes are as follows:

[Changed]

  • Fix new Rust 1.89 lifetime warnings and impl ToRpcParams on serde_json::Map (#1594)
  • feat(keepalive): expose tcp keep-alive options (#1583)
  • chore: expose TowerServiceNoHttp type (#1588)
  • chore(deps): update socket2 requirement from 0.5.1 to 0.6.0 (#1587)
  • Allow max websocket frame size to be set (#1585)
  • chore(deps): update pprof requirement from 0.14 to 0.15 (#1577)
  • Expose jsonrpsee_http_client::RpcService (#1574)

[Fixed]

  • fix: Remove username and password from URL after building Authorization header (#1581)

[v0.25.1] - 2025-04-24

A small follow-up patch release that adds a Clone impl for the middleware RpcLogger which was missing and broke the Clone impl for the HttpClient.

[v0.25.0] - 2025-04-24

A new breaking release which has been in the making for a while and the biggest change is that the RpcServiceT trait has been changed to support both the client and server side:

pub trait RpcServiceT {
	/// Response type for `RpcServiceT::call`.
	type MethodResponse;
	/// Response type for `RpcServiceT::notification`.
	type NotificationResponse;
	/// Response type for `RpcServiceT::batch`.
	type BatchResponse;
/// Processes a single JSON-RPC call, which may be a subscription or regular call.
fn call&lt;'a&gt;(&amp;self, request: Request&lt;'a&gt;) -&gt; impl Future&lt;Output = Self::MethodResponse&gt; + Send + 'a;
/// Processes multiple JSON-RPC calls at once, similar to RpcServiceT::call.
///
/// This method wraps RpcServiceT::call and RpcServiceT::notification,
/// but the root RPC service does not inherently recognize custom implementations
/// of these methods.
///
/// As a result, if you have custom logic for individual calls or notifications,
/// you must duplicate that implementation in this method or no middleware will be applied

</tr></table>

... (truncated)

Commits
  • b0a45c6 Prepare to release v0.26.0 (#1595)
  • 9e551cb chore(deps): bump Swatinem/rust-cache from 2.7.8 to 2.8.0 (#1584)
  • b92aaaf Fix new Rust 1.89 lifetime warnings and impl ToRpcParams on serde_json::Map (...
  • c0b947f feat(keepalive): expose tcp keep-alive options (#1583)
  • fa7d1c8 chore: expose TowerServiceNoHttp type (#1588)
  • ffd5020 chore(deps): update socket2 requirement from 0.5.1 to 0.6.0 (#1587)
  • 85dcced increase max websocket frame size (#1585)
  • d3d9fa8 fix: Remove username and password from URL after building Authorization heade...
  • 1869536 chore(deps): update pprof requirement from 0.14 to 0.15 (#1577)
  • f04afa7 Expose jsonrpsee_http_client::RpcService (#1574)
  • Additional commits viewable in compare view

Updates revm to 34.0.0

Changelog

Sourced from revm's changelog.

Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.

v102

date: 14.11.2025

Fix for pre berlin selfdestruct oog introduced in v99/v100 tag (revm 32.0.0).

  • revm-context-interface: 13.0.0 -> 13.1.0 (✓ API compatible changes)
  • revm-context: 12.0.0 -> 12.1.0 (✓ API compatible changes)
  • revm-database: 9.0.5 -> 9.0.6 (✓ API compatible changes)
  • revm-interpreter: 31.0.0 -> 31.1.0 (✓ API compatible changes)
  • revm-inspector: 14.0.0 -> 14.1.0 (✓ API compatible changes)
  • revm: 33.0.0 -> 33.1.0 (✓ API compatible changes)
  • revme: 10.0.0 -> 10.0.2 (✓ API compatible changes)
  • op-revm: 14.0.0 -> 14.1.0 (✓ API compatible changes)
  • revm-ee-tests: 0.1.0
  • revm-handler: 14.0.0 -> 14.1.0
  • revm-statetest-types: 13.0.0 -> 13.1.0

v101

date: 13.11.2025

Patch for Inspector so full_log will be called inside loop.

  • revm-inspector: 14.0.0 -> 14.0.1 (✓ API compatible changes)
  • revm-ee-tests: 0.1.0
  • revm: 33.0.0 -> 33.0.1
  • revm-statetest-types: 13.0.0 -> 13.0.1
  • revme: 10.0.0 -> 10.0.1
  • op-revm: 14.0.0 -> 14.0.1

v100

date: 12.11.2025

Bumping major version for revm-context-interface sa it is breaking change. Host selfdestruct function got changed in v99

  • revm-context-interface: 12.1.0 -> 13.0.0 (⚠ API breaking changes)
  • revm-context: 11.1.0 -> 12.0.0 (✓ API compatible changes)
  • revm-interpreter: 30.0.0 -> 31.0.0 (✓ API compatible changes)
  • revm-precompile: 30.0.0 -> 31.0.0 (✓ API compatible changes)
  • revm-handler: 13.0.0 -> 14.0.0 (✓ API compatible changes)
  • revm-inspector: 13.0.0 -> 14.0.0 (✓ API compatible changes)
  • op-revm: 13.0.0 -> 14.0.0 (✓ API compatible changes)
  • revm-ee-tests: 0.1.0
  • revm: 32.0.0 -> 33.0.0
  • revm-statetest-types: 12.0.0 -> 13.0.0
  • revme: 9.1.0 -> 10.0.0

revm-context-interface@13.0.0 revm-context@12.0.0 revm-interpreter@31.0.0 revm-precompile@31.0.0 revm-handler@14.0.0 revm-inspector@14.0.0

... (truncated)

Commits

Updates alloy-primitives to 1.5.4

Release notes

Sourced from alloy-primitives's releases.

alloy-core v1.5.4

What's Changed

Full Changelog: alloy-rs/core@v1.5.3...v1.5.4

Changelog

Sourced from alloy-primitives's changelog.

1.5.4 - 2026-01-28

Miscellaneous Tasks

  • [sol-macro] Use sha3 (#1064)

Other

  • Fix rkyv miri breakage (#1066)

Performance

  • [primitives] Use keccak_asm::Keccak256::digest (#1067)
  • perf(primitives): remove unnecessary keccak cache length hash computation (#1065)

1.5.3 - 2026-01-27

Dependencies

  • [deps] Run cargo shear (#1055)

Features

  • [primitives] FixedBytes: schemars::JsonSchema (#1059)

Miscellaneous Tasks

  • Release 1.5.3
  • Allow bincode advisory in deny.toml (#1060)
  • [primitives] Switch default keccak to sha3 (#1057)

Other

  • Update to tempoxyz (#1062)

Performance

  • [primitives] Always enable 'sha3/asm' feature (#1058)

1.5.2 - 2025-12-22

Miscellaneous Tasks

  • Release 1.5.2

Performance

  • [primitives] Always use FxHash for Fb* (#1054)

1.5.1 - 2025-12-18

... (truncated)

Commits

Updates alloy-trie to 0.9.4

Changelog

Sourced from alloy-trie's changelog.

0.9.4 - 2026-02-03

Bug Fixes

  • [clippy] Use sort_unstable_by_key instead of sort_unstable_by (#122)

Dependencies

  • [deps] Bumps (#129)

Features

  • Add TrieMask::len (#130)
  • Add TrieMask::iter_set_bits for efficient bit iteration (#126)

Miscellaneous Tasks

  • Use thiserror for Error implementations (#127)
  • Update CODEOWNERS (#128)

Other

  • Update to tempoxyz (#120)

0.9.3 - 2026-01-07

Features

  • Add bit ops to TrieMask (#117)

Miscellaneous Tasks

  • Release 0.9.3

0.9.2 - 2025-12-22

Features

  • Add ordered_trie_root_encoded for pre-encoded items (#115)

Miscellaneous Tasks

  • Release 0.9.2
  • Re-use alloy-primitives keccak empty (#113)
  • missing-const-for-fn lint back to "warn". (#112)

0.9.1 - 2025-08-19

Documentation

... (truncated)

Commits

Updates wasmer to 7.0.1

Release notes

Sourced from wasmer's releases.

Release v7.0.1

This patch release includes a fix for a regression where mounts were not handled correctly.

See full list of changes in the CHANGELOG

Install this version of wasmer:

curl https://get.wasmer.io -sSfL | sh -s "v7.0.1"
Changelog

Sourced from wasmer's changelog.

7.0.1 - 02/02/2026

Added

Changed

  • #6134 Switch from legacy rust-toolchain format

Fixed

  • #6146 Fix mounts not being handled properly when running a package directly…
  • #6143 wasix: fix sock_set_opt_size option validation
  • #6142 fix rust-format warning
  • #6140 Fix binfmt_misc
  • #6136 fix(build): do not use legacy 1.0.3 mold release

7.0.0 - 28/01/2026

This release adds:

  • New WASIX Context switching API (green threads).
  • New (experimental) Async API (enable it using the experimental-async feature in wasmer)
  • Full support for Dynamic Linking in WASIX.
  • Wasmer compilation progress bar.
  • Improved debugging experience via --compiler-debug-dir.
  • Singlepass: RISC-V (64-bit) support.
  • Singlepass: Multi-value support.
  • Cranelift: Exception handling support.
  • LLVM: Updated backend from LLVM 18 → LLVM 21.
  • LLVM: New target support for RISC-V (32-bit).
  • LLVM: Disabled optimizations for huge functions (e.g. Python compile time ~90s → ~10s).
  • Many secondary platform fixes and improvements for aarch64-linux, riscv64gc-linux, and loongarch64-linux.
  • Many bugfixes and improvements.

Added

Changed

  • #6125 build(v8): disable in the official tarballs

Fixed

  • #6127 fix(virtual-fs): Fix read_dir missing mount prefix
  • #6130 Fix copilot setup

... (truncated)

Commits

Updates wasmparser to 0.244.0

Commits

Updates cairo-vm to 3.1.0

Release notes

Sourced from cairo-vm's releases.

v3.1.0

What's Changed

New Contributors

Full Changelog: lambdaclass/cairo-vm@v3.0.1...v3.1.0

Changelog

Sourced from cairo-vm's changelog.

[3.1.0] - 2026-01-19

Summary: Introduces stateful VM hooks via the StepHooks trait, enabling debuggers and instrumentation tools.

Breaking Changes

  • feat(breaking): Introduce StepHooks trait which allows hooks to be stateful #2295
    • New StepHooks trait that Hooks implements
    • Allows hooks to be stateful (needed for cairo-debugger)
    • Migration: If implementing custom hooks, implement the StepHooks trait

Features

  • feat: Make Blake2s API public #2286

  • feat: implemented delete_unaccessed function #2282

Bug Fixes

  • fix: Make cairo1-run to conditionally relocate memory and trace #2241

    • Honor relocate_mem and trace_enabled flags in cairo1-run
  • fix: Fix compute_ids_high_low hint constant path #2285

  • fix: also mark PC as accessed in run_instruction #2106

  • fix: rename y_cube_int to y_square_int in get_point_from_x #2271

  • fix: correct duplicate tuple index in InvalidTrackingGroup error message #2276

[3.0.1] - 2025-12-22

Patch release with bug fixes backported to 3.0.x. See [3.1.0] for the consolidated changes.

[3.0.0] - 2025-11-19

Summary: Major release consolidating all changes from v3.0.0-rc.1 through v3.0.0-rc.5. Introduces accessible scopes for hints, deterministic iteration, and various API improvements.

Breaking Changes

  • feat(BREAKING): add support for accessible scopes in hint processor #2042

    • accessible_scopes field added to HintProcessorData
  • breaking: Store constants in Hint Data #2191

    • Constants now stored in hint data for correct resolution in nested programs
  • dev(BREAKING): Make blake2s API internal #2265

  • feat: Make QM31 functions internal #2181

... (truncated)

Commits

Updates lambdaworks-math to 0.13.0

Updates lambdaworks-crypto to 0.13.0

Updates starknet-crypto to 0.8.1

Commits
  • 8590613 release: bump starknet to 0.17.0 (and deps) (#778)
  • 293fff9 feat: derive Clone for PoseidonHasher (#777)
  • 06bc9c4 release: bump starknet to 0.17.0-rc.4 (and deps) (#776)
  • 2675b9a release: breaking releases for starknet-curve and starknet-crypto (#775)
  • 347aa60 chore: update starknet-types-core to 0.2.0 (#774)
  • e3f3387 feat: make block_number required in tx block receipt (#773)
  • 41885ed feat: make getting broadcasted tx request methods public (#740)

…ates

Updates the requirements on [bincode](https://github.com/bincode-org/bincode), [rand](https://github.com/rust-random/rand), [rand_chacha](https://github.com/rust-random/rand), [jsonrpsee](https://github.com/paritytech/jsonrpsee), [revm](https://github.com/bluealloy/revm), [alloy-primitives](https://github.com/alloy-rs/core), [alloy-trie](https://github.com/alloy-rs/trie), [wasmer](https://github.com/wasmerio/wasmer), [wasmparser](https://github.com/bytecodealliance/wasm-tools), [cairo-vm](https://github.com/lambdaclass/cairo-vm), lambdaworks-math, lambdaworks-crypto, [starknet-crypto](https://github.com/xJonathanLEI/starknet-rs), [winterfell](https://github.com/novifinancial/winterfell), [winter-math](https://github.com/novifinancial/winterfell) and [winter-crypto](https://github.com/novifinancial/winterfell) to permit the latest version.

Updates `bincode` to 3.0.0
- [Commits](https://github.com/bincode-org/bincode/commits)

Updates `rand` to 0.10.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@rand_core-0.9.1...0.10.0)

Updates `rand_chacha` to 0.9.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.9.0...0.9.0)

Updates `jsonrpsee` to 0.26.0
- [Release notes](https://github.com/paritytech/jsonrpsee/releases)
- [Changelog](https://github.com/paritytech/jsonrpsee/blob/master/CHANGELOG.md)
- [Commits](paritytech/jsonrpsee@v0.21.0...v0.26.0)

Updates `revm` to 34.0.0
- [Release notes](https://github.com/bluealloy/revm/releases)
- [Changelog](https://github.com/bluealloy/revm/blob/main/CHANGELOG.md)
- [Commits](bluealloy/revm@v19...v34)

Updates `alloy-primitives` to 1.5.4
- [Release notes](https://github.com/alloy-rs/core/releases)
- [Changelog](https://github.com/alloy-rs/core/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/core@v0.8.0...v1.5.4)

Updates `alloy-trie` to 0.9.4
- [Release notes](https://github.com/alloy-rs/trie/releases)
- [Changelog](https://github.com/alloy-rs/trie/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/trie@v0.7.0...v0.9.4)

Updates `wasmer` to 7.0.1
- [Release notes](https://github.com/wasmerio/wasmer/releases)
- [Changelog](https://github.com/wasmerio/wasmer/blob/main/CHANGELOG.md)
- [Commits](wasmerio/wasmer@v4.3.0...v7.0.1)

Updates `wasmparser` to 0.244.0
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](https://github.com/bytecodealliance/wasm-tools/commits)

Updates `cairo-vm` to 3.1.0
- [Release notes](https://github.com/lambdaclass/cairo-vm/releases)
- [Changelog](https://github.com/lambdaclass/cairo-vm/blob/main/CHANGELOG.md)
- [Commits](lambdaclass/cairo-vm@v1.0.0...v3.1.0)

Updates `lambdaworks-math` to 0.13.0

Updates `lambdaworks-crypto` to 0.13.0

Updates `starknet-crypto` to 0.8.1
- [Release notes](https://github.com/xJonathanLEI/starknet-rs/releases)
- [Commits](xJonathanLEI/starknet-rs@starknet-crypto/v0.7.0...starknet-crypto/v0.8.1)

Updates `winterfell` to 0.13.1
- [Release notes](https://github.com/novifinancial/winterfell/releases)
- [Changelog](https://github.com/facebook/winterfell/blob/main/CHANGELOG.md)
- [Commits](facebook/winterfell@v0.9.0...v0.13.1)

Updates `winter-math` to 0.13.1
- [Release notes](https://github.com/novifinancial/winterfell/releases)
- [Changelog](https://github.com/facebook/winterfell/blob/main/CHANGELOG.md)
- [Commits](facebook/winterfell@v0.9.0...v0.13.1)

Updates `winter-crypto` to 0.13.1
- [Release notes](https://github.com/novifinancial/winterfell/releases)
- [Changelog](https://github.com/facebook/winterfell/blob/main/CHANGELOG.md)
- [Commits](facebook/winterfell@v0.9.0...v0.13.1)

---
updated-dependencies:
- dependency-name: bincode
  dependency-version: 3.0.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: rand
  dependency-version: 0.10.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: rand_chacha
  dependency-version: 0.9.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: jsonrpsee
  dependency-version: 0.26.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: revm
  dependency-version: 34.0.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: alloy-primitives
  dependency-version: 1.5.4
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: alloy-trie
  dependency-version: 0.9.4
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: wasmer
  dependency-version: 7.0.1
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: wasmparser
  dependency-version: 0.244.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: cairo-vm
  dependency-version: 3.1.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: lambdaworks-math
  dependency-version: 0.13.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: lambdaworks-crypto
  dependency-version: 0.13.0
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: starknet-crypto
  dependency-version: 0.8.1
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: winterfell
  dependency-version: 0.13.1
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: winter-math
  dependency-version: 0.13.1
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: winter-crypto
  dependency-version: 0.13.1
  dependency-type: direct:production
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 9, 2026

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants