34 lines
753 B
TOML
34 lines
753 B
TOML
[profile.default]
|
|
src = "code"
|
|
out = "code/out"
|
|
test = "code/test"
|
|
libs = ["node_modules", "code/lib"]
|
|
cache_path = "code/cache"
|
|
solc = '0.8.28'
|
|
# Enable or disable the optimizer
|
|
optimizer = true
|
|
# The number of optimizer runs
|
|
optimizer_runs = 200
|
|
|
|
# Fuzzing settings
|
|
[fuzz]
|
|
# The number of fuzz runs
|
|
runs = 500
|
|
# The seed for the fuzz runs
|
|
seed = '42'
|
|
|
|
# Testing settings
|
|
[fmt]
|
|
# Line length for the formatter
|
|
line_length = 80
|
|
# Number of spaces per tab
|
|
tab_width = 4
|
|
# Bracket spacing
|
|
bracket_spacing = true
|
|
# Integer type formatting
|
|
int_types = 'long'
|
|
# Multiline function signature formatting
|
|
multiline_func_header = 'attributes_first'
|
|
|
|
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
|