Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to alloy #54

Merged
merged 12 commits into from
Mar 21, 2024
1,873 changes: 206 additions & 1,667 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ cargo run --release --features risc0
#### GPU

```
RISC0_DEV_MODE=1 cargo run -F cuda --release --features risc0
cargo run -F cuda --release --features risc0
```
OR
```
RISC0_DEV_MODE=1 cargo run -F metal --release --features risc0
cargo run -F metal --release --features risc0
```

CUDA needs to be installed when using `cuda`: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html
Expand Down
4 changes: 3 additions & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ alloy-primitives = { version = "0.6", default-features = false, features = [
"std",
"tiny-keccak",
] }
alloy-rpc-types = { git = "https://github.com/brechtpd/alloy", branch = "header-serialize" }
alloy-consensus = { git = "https://github.com/brechtpd/alloy", branch = "header-serialize" }
alloy-network = { git = "https://github.com/brechtpd/alloy", branch = "header-serialize", features = ["k256"] }
bytes = {version = "1.5", default-features = false}
hashbrown = { workspace = true }
libflate = { version = "2.0.0", optional = true }
Expand All @@ -26,7 +29,6 @@ thiserror-no-std = "2.0.2"
zeth-primitives = { path = "../primitives", features = ["revm"] }
hex = { version = "0.4.3", default-features = false, optional = true }
url = "2.5.0"
ethers-core = { git = "https://github.com/smtmfft/ethers-rs", branch = "ethers-core-2.0.10" }

# [target.'cfg(feature = "std")'.dependencies]
thiserror = {version = "1.0", optional = true}
Expand Down
Loading
Loading