Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xgleb committed Aug 9, 2023
1 parent 4d50f58 commit a081dfd
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 21 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ exclude = [".github/", "**/tests/", "**/contracts/", "**/cache/", "**/out/"]

[workspace.dependencies]
eyre = "0.6"
ethers = "2.0.8"
rand = "0.8.5"
serde = "1.0.164"
serde_json = "1.0.99"
async-trait = "0.1.68"
tokio = { version = "1.19", features = ["macros", "rt-multi-thread", "time"] }
ethers = { version = "2", default-features = false, features = ["rustls"] }
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,17 @@
'';

scripts.bind-attack.exec = ''
${forge} install
${forge} fmt
${forge} bind -b ./attack/src/abi --module --force --overwrite
cargo fmt
'';

scripts.bind-ctf.exec = ''
${forge} install --root ctf
${forge} fmt --root ctf
${forge} bind --root ctf -b ./ctf/src/abi --module --skip-cargo-toml --force --overwrite
cargo fmt
'';

scripts.deploy-levels.exec = ''
Expand Down

0 comments on commit a081dfd

Please sign in to comment.