From 2ecbd6e3443744e83bdb3de4e635f9385cfe86d8 Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Wed, 8 Nov 2023 11:48:34 -0600 Subject: [PATCH] chore: make compiled_artifacts field in ProjectCompileOutput struct public --- ethers-solc/src/compile/output/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-solc/src/compile/output/mod.rs b/ethers-solc/src/compile/output/mod.rs index 88044611b..b93906034 100644 --- a/ethers-solc/src/compile/output/mod.rs +++ b/ethers-solc/src/compile/output/mod.rs @@ -28,7 +28,7 @@ pub struct ProjectCompileOutput { /// contains the aggregated `CompilerOutput` pub(crate) compiler_output: AggregatedCompilerOutput, /// all artifact files from `output` that were freshly compiled and written - pub(crate) compiled_artifacts: Artifacts, + pub compiled_artifacts: Artifacts, /// All artifacts that were read from cache pub(crate) cached_artifacts: Artifacts, /// errors that should be omitted