Skip to content

Commit

Permalink
chore: bump compilers (#9735)
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr authored Jan 22, 2025
1 parent 75462d9 commit 5d16800
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ foundry-wallets = { path = "crates/wallets" }
foundry-linking = { path = "crates/linking" }

# solc & compilation utilities
foundry-block-explorers = { version = "0.9.0", default-features = false }
foundry-compilers = { version = "0.12.9", default-features = false }
foundry-block-explorers = { version = "0.11.0", default-features = false }
foundry-compilers = { version = "0.13.0", default-features = false }
foundry-fork-db = "0.10.0"
solang-parser = "=0.3.3"
solar-parse = { version = "=0.1.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/forge/bin/cmd/bind_json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl BindJsonArgs {
let mut sources = graph
// resolve graph into mapping language -> version -> sources
.into_sources_by_version(&project)?
.0
.sources
.into_iter()
// we are only interested in Solidity sources
.find(|(lang, _)| *lang == MultiCompilerLanguage::Solc(SolcLanguage::Solidity))
Expand Down
2 changes: 1 addition & 1 deletion crates/forge/bin/cmd/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl ResolveArgs {
let project = config.project()?;

let graph = Graph::resolve(&project.paths)?;
let (sources, _) = graph.into_sources_by_version(&project)?;
let sources = graph.into_sources_by_version(&project)?.sources;

let mut output: BTreeMap<String, Vec<ResolvedCompiler>> = BTreeMap::new();

Expand Down

0 comments on commit 5d16800

Please sign in to comment.