Skip to content

Commit

Permalink
The Code4rena release
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Z committed Mar 9, 2023
0 parents commit 7353e99
Show file tree
Hide file tree
Showing 346 changed files with 23,686 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .cargo/config.toml
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",
]
29 changes: 29 additions & 0 deletions .gitignore
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/
12 changes: 12 additions & 0 deletions .gitmodules
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
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
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!
Loading

0 comments on commit 7353e99

Please sign in to comment.