aboutsummaryrefslogtreecommitdiff
path: root/guests/keccak/Cargo.toml
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-04-14 11:51:36 +0300
committerKamen Mladenov <kamen@syndamia.com>2025-04-14 13:40:57 +0300
commitc87a637465126176ae361e0b9ce7893e279e86ce (patch)
treed050c0481af6994bcf84a395ad3f685358135adf /guests/keccak/Cargo.toml
parent8ce46210fd8936e4a20b94374dd9eb0c8892deb5 (diff)
downloadzkVMs-benchmarks-c87a637465126176ae361e0b9ce7893e279e86ce.tar
zkVMs-benchmarks-c87a637465126176ae361e0b9ce7893e279e86ce.tar.gz
zkVMs-benchmarks-c87a637465126176ae361e0b9ce7893e279e86ce.zip
feat(guests/keccak): Add ZKM precompile function call
Diffstat (limited to 'guests/keccak/Cargo.toml')
-rw-r--r--guests/keccak/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/guests/keccak/Cargo.toml b/guests/keccak/Cargo.toml
index 5e4064a..beaa70e 100644
--- a/guests/keccak/Cargo.toml
+++ b/guests/keccak/Cargo.toml
@@ -7,11 +7,12 @@ edition = "2021"
guests_macro = { version = "0.1.0", path = "../../guests_macro" }
sha3 = { version = "0.10.8", default-features = false }
+zkm-runtime = { git = "https://github.com/zkMIPS/zkm.git", optional = true } # patched by the guest wrapper
[features]
no_std = []
jolt = []
nexus = []
risc0 = []
sp1 = []
-zkm = []
+zkm = ["zkm-runtime"]
zkwasm = []