Skip to content

Commit

Permalink
Merge pull request #220 from ralexstokes/update-nix
Browse files Browse the repository at this point in the history
some fixes for local dev shell
  • Loading branch information
ralexstokes authored Apr 26, 2024
2 parents 52993dc + 6d83b5e commit 7913b81
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 23 deletions.
7 changes: 3 additions & 4 deletions Cargo.lock

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

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ default-members = ["bin/mev"]
version = "0.3.0"

[workspace.dependencies]
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "72800f5e4cc28ad384f9cc7639d19da8dab50fb0" }
beacon-api-client = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "72800f5e4cc28ad384f9cc7639d19da8dab50fb0" }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "6c7305336397b1cfa1c780812a51c97bd025d052" }
beacon-api-client = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "6c7305336397b1cfa1c780812a51c97bd025d052" }

reth = { git = "https://github.com/paradigmxyz/reth", rev = "71f8e678aa53f75c2c35badaa5848262de594cdc" }
reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "71f8e678aa53f75c2c35badaa5848262de594cdc" }
Expand All @@ -25,3 +25,6 @@ reth-ethereum-payload-builder = { git = "https://github.com/paradigmxyz/reth", r

eyre = "0.6.8"
futures-util = "0.3.30"

[patch.crates-io]
c-kzg = { git = "https://github.com/ethereum/c-kzg-4844", tag = "v1.0.1" }
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.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.76"
channel = "1.77.2"
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ mkShell {
just
mdbook
];
LIBCLANG_PATH = lib.optionals pkgs.stdenv.isLinux "${llvmPackages.libclang.lib}/lib";
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
}

0 comments on commit 7913b81

Please sign in to comment.