From d0fb6c349702600249a387afeef6287e1350d292 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:18:13 +0100 Subject: [PATCH] fix: outdated merge build error --- crates/compilers/src/lib.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/compilers/src/lib.rs b/crates/compilers/src/lib.rs index cb0150fe..40eaee9c 100644 --- a/crates/compilers/src/lib.rs +++ b/crates/compilers/src/lib.rs @@ -49,9 +49,12 @@ use cache::CompilerCache; use compile::output::contracts::VersionedContracts; use compilers::multi::MultiCompiler; use derivative::Derivative; -use foundry_compilers_artifacts::solc::{ - sources::{Source, SourceCompilationKind, Sources}, - Contract, Severity, SourceFile, StandardJsonCompilerInput, +use foundry_compilers_artifacts::{ + output_selection::OutputSelection, + solc::{ + sources::{Source, SourceCompilationKind, Sources}, + Contract, Severity, SourceFile, StandardJsonCompilerInput, + }, }; use foundry_compilers_core::error::{Result, SolcError, SolcIoError}; use output::sources::{VersionedSourceFile, VersionedSourceFiles};