aboutsummaryrefslogtreecommitdiff
path: root/zkvms/zkm/host/Cargo.toml
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-01-16 12:47:40 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-01-16 12:47:40 +0200
commitf276736ceba61373fb60216256c477ab2ccffe29 (patch)
tree98824fd9e68847c608113aea107cd4e5e627ac5b /zkvms/zkm/host/Cargo.toml
parent818ba1a13973fe64c3d73e2bf90c45e2dcafec72 (diff)
downloadzkVMs-benchmarks-f276736ceba61373fb60216256c477ab2ccffe29.tar
zkVMs-benchmarks-f276736ceba61373fb60216256c477ab2ccffe29.tar.gz
zkVMs-benchmarks-f276736ceba61373fb60216256c477ab2ccffe29.zip
feat(zkvms): Add zkm host
Diffstat (limited to 'zkvms/zkm/host/Cargo.toml')
-rw-r--r--zkvms/zkm/host/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/zkvms/zkm/host/Cargo.toml b/zkvms/zkm/host/Cargo.toml
new file mode 100644
index 0000000..7906935
--- /dev/null
+++ b/zkvms/zkm/host/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "host-zkm"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+zkm-sdk = { path = "../sdk", features = ["snark"] }
+bincode = "1.3.3"
+
+tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread", "signal"] }
+
+log = { version = "0.4.14", default-features = false }
+env_logger = "0.10.0"
+anyhow = "1.0.75"
+
+zkvms_host_io = { path = "../../../zkvms_host_io" }
+
+# THESE ARE A COPY OF THE GUEST DEPENDENCIES
+# They're here as a hack, so crane.lib will fetch them
+zkm-runtime = { path = "/nix/store/h9s6kmnx7iafllv10wqhjix5kpyfsh37-zkm-unstable-2025-01-05/runtime/entrypoint" }