forked from clabby/op-kompressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
45 lines (36 loc) · 1.21 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
################################################################
# Default profile #
################################################################
[profile.default]
src = 'src'
out = 'out'
libs = ['lib']
remappings = ['forge-std=lib/forge-std/src', 'src=src']
solc = '0.8.19'
optimizer = true
optimizer_runs = 1_000_000
[profile.default.fuzz]
runs = 512
################################################################
# CI profile #
################################################################
[profile.ci]
solc = '0.8.19'
via_ir = true
optimizer = true
optimizer_runs = 1_000_000
[profile.ci.fuzz]
runs = 2048
################################################################
# Build Profile #
################################################################
[profile.build]
solc = '0.8.19'
via_ir = true
optimizer = true
optimizer_runs = 100_000_000
################################################################
# FMT Settings #
################################################################
[fmt]
bracket_spacing = true