28 lines
459 B
TOML
28 lines
459 B
TOML
[profile.default]
|
|
src = "src"
|
|
test = "test"
|
|
script = "script"
|
|
out = "out"
|
|
libs = ["lib"]
|
|
solc_version = "0.8.35"
|
|
evm_version = "cancun"
|
|
optimizer = true
|
|
optimizer_runs = 200
|
|
ffi = true
|
|
ast = true
|
|
build_info = true
|
|
extra_output = ["storageLayout"]
|
|
fs_permissions = [
|
|
{ access = "read", path = "out" },
|
|
{ access = "read-write", path = "deployments" }
|
|
]
|
|
|
|
[fuzz]
|
|
runs = 512
|
|
seed = "0x5555505342414e4b"
|
|
|
|
[invariant]
|
|
runs = 128
|
|
depth = 64
|
|
fail_on_revert = true
|