From c798bce740f285c7ac7778a437e62bcf7b604714 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Tue, 21 May 2024 09:57:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Format=20`foundry.toml`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- foundry.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/foundry.toml b/foundry.toml index ef822a8..370cc27 100644 --- a/foundry.toml +++ b/foundry.toml @@ -1,12 +1,12 @@ -## defaults for all profiles +optimiser"version## defaults for all profiles [profile.default] -test = 'test' # the test directory -out = 'out' # the output directory (for artifacts) -libs = ['lib'] # a list of library directories +test = "test" # the test directory +out = "out" # the output directory (for artifacts) +libs = ["lib"] # a list of library directories cache = true # whether to cache builds or not -cache_path = 'cache' # where the cache is stored if enabled -solc_version = '0.8.25' # override for the solc version -evm_version = 'shanghai' # set the EVM target version +cache_path = "cache" # where the cache is stored if enabled +solc_version = "0.8.25" # override for the solc version +evm_version = "shanghai" # set the EVM target version optimizer = true # enable the solc optimiser optimizer_runs = 999_999 # the number of optimiser runs verbosity = 3 # the verbosity of tests