Skip to content

Commit

Permalink
Merge pull request risc0#54 from taikoxyz/to-alloy
Browse files Browse the repository at this point in the history
Switch to alloy
  • Loading branch information
CeciliaZ030 authored Mar 21, 2024
2 parents 46825d6 + 3974e47 commit a0a7234
Show file tree
Hide file tree
Showing 68 changed files with 1,521 additions and 11,215 deletions.
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

0 comments on commit a0a7234

Please sign in to comment.