This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 843
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix/update dependencies versions (#1722)
### Description Had following built error on my Mac (MacOS 12.6.7, M1 Pro) ``` error[E0658]: use of unstable library feature 'stdsimd' --> /Users/kimi/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.7/src/operations.rs:124:24 | 124 | let res = unsafe { vaesmcq_u8(vaeseq_u8(transmute!(value), transmute!(0u128))) }; | ^^^^^^^^^^ | = note: see issue #48556 <rust-lang/rust#48556> for more information = help: add `#![feature(stdsimd)]` to the crate attributes to enable ... ``` Had following error if only to downgrade `ahash` to `0.8.6`. ``` error[E0432]: unresolved import `revm_precompile` --> bus-mapping/src/precompile.rs:7:5 | 7 | use revm_precompile::{Precompile, PrecompileError, Precompiles}; | ^^^^^^^^^^^^^^^ use of undeclared crate or module `revm_precompile` | ``` Fixed by upgrade `revm_precompile` to `2.2.0`. After upgrade `revm_precompile` to `2.2.0`, CI complained library `libclang.so` missing. That's bcs `revm_precompile` `2.2.0` having `c-kzg` feature which needs `libclang`. So in this fix, we also disable default feature of `revm-precompile` (`default-features=false`). ### Issue Link N/A ### Type of change - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update ### Contents Pinning a fixed version is a better practice so this PR is not only update the versions mentioned above but also using `=` to pin the version. --------- Co-authored-by: adria0.eth <[email protected]>
- Loading branch information
Showing
8 changed files
with
834 additions
and
731 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters