-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfoundry.toml
35 lines (30 loc) · 996 Bytes
/
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
[profile.default]
src = "src"
out = "out"
fs_permissions = [{access = "read-write", path = "./bytecode/"}, {access = "read", path = "./script/"}, {access = "read-write", path = "./deployments/"}]
ffi = true
solc_version = "0.8.19"
evm_version = "paris"
optimizer = true
optimizer_runs = 200
[fuzz]
runs = 1024
# Remappings are setup using remappings.txt, since forge seems to ignore remappings here
[fmt]
line_length = 100
tab_width = 4
bracket_spacing = false
multiline_func_header = "params_first"
quote_style = "double"
number_underscore = "thousands"
wrap_comments = false
ignore = [
"src/lib/**",
]
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
[dependencies]
forge-std = "1.9.1"
solmate = "6.8.0"
solady = "0.0.124"
"@openzeppelin-contracts" = "4.9.2"
clones-with-immutable-args = { version = "1.1.1", git = "git@github.com:wighawag/clones-with-immutable-args.git", rev = "f5ca191afea933d50a36d101009b5644dc28bc99" }