Skip to content

Commit

Permalink
Merge pull request #85 from taikoxyz/zkvm-precompiles
Browse files Browse the repository at this point in the history
feat: hook Zkvm precompiles with ZkOperation trait
  • Loading branch information
CeciliaZ030 authored May 12, 2024
2 parents 99f5580 + ff36834 commit 1fcb533
Show file tree
Hide file tree
Showing 94 changed files with 181,609 additions and 332,210 deletions.
337 changes: 158 additions & 179 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ raiko-lib = { path = "./lib", features = ["std"] }
raiko-primitives = { path = "./primitives" }

# revm
revm-primitives = { git = "https://github.com/taikoxyz/revm.git", branch = "v35_taiko", default-features = false }
revm = { git = "https://github.com/taikoxyz/revm.git", branch = "v35_taiko", default-features = false, features = [
revm-primitives = { git = "https://github.com/taikoxyz/revm.git", branch = "feat/zk-op", default-features = false }
revm = { git = "https://github.com/taikoxyz/revm.git", branch = "feat/zk-op", default-features = false, features = [
"serde",
"std",
"taiko",
]}
] }

# risc zero
risc0-zkvm = { version = "0.21.0", features = ["prove", "getrandom"] }
Expand Down
63 changes: 63 additions & 0 deletions harness/Cargo.lock

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

8 changes: 8 additions & 0 deletions harness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]
members = [ "core", "macro"]

[workspace.dependencies]
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
once_cell = "1.8.0"
Loading

0 comments on commit 1fcb533

Please sign in to comment.