Inform users to update in case of error [E0658]#6
Merged
gakonst merged 1 commit intofoundry-rs:masterfrom Sep 13, 2021
Merged
Conversation
If users try to build/check the project with an older version of rust, it will fail due to this error: `error[E0658]: use of unstable library feature 'map_into_keys_values'`. It is fixed with `rustup update`
pistomat
pushed a commit
to pistomat/foundry
that referenced
this pull request
Aug 14, 2023
Syncing with main
sambacha
referenced
this pull request
in manifoldfinance/foundry
Dec 19, 2024
fix typo in CloneMetadata
0xrusowsky
referenced
this pull request
in 0xrusowsky/foundry
Apr 28, 2025
* use solar diagnostics, remove unneeded types * update diagnostic emission * clippy * set track daignostics to false * display help message
grandizzy
added a commit
that referenced
this pull request
May 23, 2025
* add lint cmd, variable lints * wip * wip * wip * wip * wip * wip * add keccak256 opt test * wip * wip * wip * wip * fix div before mul * update lint args * wip * update declare lints macro * update with_severity * configure linter * wip * update hash value * fix read in source * rayon * reorder lint declarations * clippy * add placeholder for additional lints * more placeholders * wip * wip * refactor into sol linter * impl Linter for SolidityLinter * fmt * wip * wip * refactor lints into SolLint enum * update lint trait * wip * wip * wip * wip * wip * update lint * update forge lint to use ProjectLinter * wip * include/exclude files from linting * linter output display note * configure with severity and description * fmt * implementing display * wip * wip * implement display for linter output, clippy fixes * add note to update colors * update linter output display * remove todos, clean up comments * clean up display * update med finding color * add optional help message * display help message * simplify lint args, make severity configurable * updating lints, update tests * add tests for info patterns, fix regex * remove function mixed case * doc comments * clippy * fmt * reorganize, crate level docs * fix info lints * Use Solar daignostics instead of `LinterOutput` (#6) * use solar diagnostics, remove unneeded types * update diagnostic emission * clippy * set track daignostics to false * display help message * set level according to severity * update descriptions to be more concise * removed LinterError from lint trait * early pass + tests * fix: fmt + clippy * fix: fmt + clippy * fix: fmt + clippy * fix: fmt + clippy * fix: feedback * fix: feedback * fix: regex Co-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com> * tests: cli integration * fix: broken test * fix: fmt Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * style: naming Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * style: fmt Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * fix: use heck + individual lint macros + housekeeping * fix: single session with parallel linting per file * style: fix docs errors + typos * docs: ref to deleted field * fix: preprocessor regression + cargo.toml + default lint config tests * test(forge): solar test runner (#2) * style: clippy * typo Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * fix: housekeeping * docs: linter docs for users + devs * docs: style * docs: style * clone lint testdata with lf * fix: out dir constructor * update toml * fix: merge conflicts * fix: cargo.lock merge conflicts * style: clippy * style: whitespace * fix: clippy * Cargo.lock update to weekly task * Preserve alloy patch placeholders * Clippy --------- Co-authored-by: 0xKitsune <0xkitsune@protonmail.com> Co-authored-by: 0xKitsune <77890308+0xKitsune@users.noreply.github.com> Co-authored-by: zerosnacks <95942363+zerosnacks@users.noreply.github.com> Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Co-authored-by: grandizzy <grandizzy.the.egg@gmail.com> Co-authored-by: grandizzy <38490174+grandizzy@users.noreply.github.com>
haythemsellami
referenced
this pull request
in category-labs/foundry
Jan 28, 2026
…a98efe2208af326cf70f59d374165e0df363 Use monad-revm with upstream merge @a31fa98efe2208af326cf70f59d374165e0df363
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If users try to build/check the project with an older version of rust, it will fail due to this error:
error[E0658]: use of unstable library feature 'map_into_keys_values'.It is fixed with
rustup update