diff --git a/tests/test-framework/Cargo.toml b/tests/test-framework/Cargo.toml index 66ef2441cf..51a67cd713 100644 --- a/tests/test-framework/Cargo.toml +++ b/tests/test-framework/Cargo.toml @@ -29,6 +29,9 @@ version = "=1.10.0" [dependencies.backtrace] version = "0.3.68" +[dependencies.indexmap] +version = "1.9" + [dependencies.clap] version = "4.4" features = [ "derive" ] diff --git a/tests/test-framework/benches/leo_compiler.rs b/tests/test-framework/benches/leo_compiler.rs index 4ee7ed60a6..995075f507 100644 --- a/tests/test-framework/benches/leo_compiler.rs +++ b/tests/test-framework/benches/leo_compiler.rs @@ -16,6 +16,7 @@ //! This file contains tools for benchmarking the Leo compiler and its stages. +use indexmap::IndexMap; use leo_compiler::{BuildOptions, Compiler, CompilerOptions, OutputOptions}; use leo_errors::emitter::{Emitter, Handler}; use leo_span::{source_map::FileName, symbol::SESSION_GLOBALS}; @@ -105,6 +106,7 @@ fn new_compiler(handler: &Handler) -> Compiler<'_> { dce_ast: false, }, }), + IndexMap::new(), ) }