-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(foundry): update from upstream (#187)
Signed-off-by: Danil <[email protected]> Co-authored-by: Resende <[email protected]> Co-authored-by: Léo Vincent <[email protected]> Co-authored-by: evalir <[email protected]> Co-authored-by: tsite <[email protected]> Co-authored-by: Daniel Viau <[email protected]> Co-authored-by: christn <[email protected]> Co-authored-by: test <[email protected]> Co-authored-by: Matthias Seitz <[email protected]> Co-authored-by: Nicolas Gotchac <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: DaniPopes <[email protected]> Co-authored-by: Markus Osterlund / robriks <[email protected]> Co-authored-by: DaniPopes <[email protected]> Co-authored-by: Alejandro Munoz <[email protected]> Co-authored-by: Alejandro Muñoz-McDonald <[email protected]> Co-authored-by: clabby <[email protected]> Co-authored-by: mattsse <[email protected]> Co-authored-by: Arsenii Kulikov <[email protected]> Co-authored-by: Arsenii Kulikov <[email protected]> Co-authored-by: ts <[email protected]> Co-authored-by: James Wenzel <[email protected]> Co-authored-by: James Wenzel <[email protected]> Co-authored-by: Vladimir <[email protected]> Co-authored-by: Inphi <[email protected]> Co-authored-by: sakotn <[email protected]> Co-authored-by: auebasota1337 <[email protected]> Co-authored-by: teddav <[email protected]> Co-authored-by: danilo neves cruz <[email protected]> Co-authored-by: Arshan Khanifar <[email protected]> Co-authored-by: Arsenii Kulikov <[email protected]> Co-authored-by: Qiwei Yang <[email protected]> Co-authored-by: Bakuchi <[email protected]> Co-authored-by: DoTheBestToGetTheBest <[email protected]> Co-authored-by: refcell <[email protected]> Co-authored-by: Tudor <[email protected]> Co-authored-by: Luke Parker <[email protected]> Co-authored-by: Miguel Palhas <[email protected]> Co-authored-by: Michael de Hoog <[email protected]> Co-authored-by: Anika Raghuvanshi <[email protected]> Co-authored-by: anikaraghu <[email protected]> Co-authored-by: Valentin B <[email protected]> Co-authored-by: Rim Rakhimov <[email protected]> Co-authored-by: albertov19 <[email protected]> Co-authored-by: Daniel Helm <[email protected]> Co-authored-by: 0xtekgrinder <[email protected]> Co-authored-by: greged93 <[email protected]> Co-authored-by: Akaonetwo <[email protected]> Co-authored-by: Anıl <[email protected]> Co-authored-by: 0xbasar <[email protected]> Co-authored-by: codeesura <[email protected]> Co-authored-by: 0xMemoryGrinder <[email protected]> Co-authored-by: Cheng-Kang Chen <[email protected]> Co-authored-by: Dustin Brickwood <[email protected]> Co-authored-by: Nisheeth Barthwal <[email protected]> Co-authored-by: Nisheeth Barthwal <[email protected]> Co-authored-by: Aleksey Bykhun <[email protected]>
- Loading branch information
1 parent
4521247
commit 31f2f02
Showing
779 changed files
with
34,018 additions
and
78,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
[alias] | ||
cheats = "test -p foundry-cheatcodes --features schema tests::" | ||
cheats = "test -p foundry-cheatcodes-spec --features schema tests::" | ||
test-debugger = "test -p forge --test cli manual_debug_setup -- --include-ignored --nocapture" | ||
|
||
# Increase the stack size to 10MB for Windows targets, which is in line with Linux | ||
# (whereas default for Windows is 1MB). | ||
[target.x86_64-pc-windows-msvc] | ||
rustflags = [ | ||
# Increases the stack size to 10MB, which is | ||
# in line with Linux (whereas default for Windows is 1MB) | ||
"-C", | ||
"link-arg=/STACK:10000000", | ||
] | ||
rustflags = ["-Clink-arg=/STACK:10000000"] | ||
|
||
[target.i686-pc-windows-msvc] | ||
rustflags = [ | ||
# Increases the stack size to 10MB, which is | ||
# in line with Linux (whereas default for Windows is 1MB) | ||
"-C", | ||
"link-arg=/STACK:10000000", | ||
] | ||
rustflags = ["-Clink-arg=/STACK:10000000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[profile.default] | ||
retries = { backoff = "exponential", count = 2, delay = "2s", jitter = true } | ||
slow-timeout = { period = "1m", terminate-after = 3 } | ||
|
||
[[profile.default.overrides]] | ||
filter = "test(/ext_integration|can_test_forge_std/)" | ||
slow-timeout = { period = "5m", terminate-after = 4 } | ||
|
||
[profile.heavy] | ||
retries = 1 | ||
slow-timeout = { period = "120m", terminate-after = 1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* @danipopes @evalir @mattsse | ||
|
||
crates/anvil/ @evalir @mattsse | ||
crates/evm/coverage/ @evalir @onbjerg | ||
crates/fmt/ @rkrasiuk | ||
crates/macros/impls/ @danipopes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.