forked from matter-labs/era-compiler-tester
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Z
committed
Mar 9, 2023
0 parents
commit 7353e99
Showing
346 changed files
with
23,686 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[build] | ||
rustflags = [ | ||
"-W", "missing_docs", | ||
] | ||
incremental = true | ||
|
||
[target.x86_64-apple-darwin] | ||
rustflags = [ | ||
"-W", "missing_docs", | ||
"-C", "link-arg=-mmacosx-version-min=11.0", | ||
] | ||
|
||
[target.aarch64-apple-darwin] | ||
rustflags = [ | ||
"-W", "missing_docs", | ||
"-C", "link-arg=-mmacosx-version-min=11.0", | ||
] | ||
|
||
[profile.release] | ||
strip = false | ||
|
||
[env] | ||
LLVM_SYS_150_PREFIX = { value = "./target-llvm/target-final/", relative = true, force = false } | ||
RUST_BACKTRACE = { value = "full" } | ||
RUST_LOG = { value = "vm=trace" } | ||
|
||
[tools.clippy] | ||
warn = [ | ||
"missing_docs_in_private_items", | ||
] |
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,29 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# The LLVM framework source and build | ||
/llvm/ | ||
/target-llvm*/ | ||
|
||
# External compilers | ||
/solc-bin/* | ||
/vyper-bin/* | ||
|
||
# The debug and trace artifacts | ||
/debug/ | ||
/trace/ | ||
|
||
# The dependency locks | ||
# /Cargo.lock | ||
# /LLVM.lock | ||
|
||
# IDE | ||
/.idea/ | ||
/.vscode/ | ||
|
||
# CI | ||
/.github/ |
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,12 @@ | ||
[submodule "tests"] | ||
path = tests | ||
url = https://github.com/matter-labs/era-compiler-tests | ||
branch = main | ||
[submodule "solidity"] | ||
path = solidity | ||
url = https://github.com/ethereum/solidity | ||
branch = develop | ||
[submodule "system-contracts"] | ||
path = system-contracts | ||
url = ssh://[email protected]/code-423n4/2023-03-zksync.git | ||
branch = main |
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,9 @@ | ||
# Contribution Guidelines | ||
|
||
Thank you for considering helping out with the source code! We are extremely grateful for any consideration of | ||
contributions to this repository. However, at this time, we generally do not accept external contributions. This policy | ||
will change in the future, so please check back regularly for updates. | ||
|
||
For security issues, please contact us at [[email protected]](mailto:[email protected]). | ||
|
||
Thank you for your support in accelerating the mass adoption of crypto for personal sovereignty! |
Oops, something went wrong.