aboutsummaryrefslogtreecommitdiff
path: root/zkvms/zkwasm/guest/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'zkvms/zkwasm/guest/Cargo.toml')
-rw-r--r--zkvms/zkwasm/guest/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/zkvms/zkwasm/guest/Cargo.toml b/zkvms/zkwasm/guest/Cargo.toml
new file mode 100644
index 0000000..315233c
--- /dev/null
+++ b/zkvms/zkwasm/guest/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "guest"
+version = "0.1.0"
+edition = "2021"
+
+[workspace]
+
+[lib]
+crate-type = ["cdylib"]
+
+[dependencies]
+# THESE DEPENDENCIES NEED TO BE PRESENT IN THE HOST CARGO.TOML
+rlp = { version = "0.5.2", default-features = false }
+zkwasm-rust-sdk = { git = "https://github.com/DelphinusLab/zkWasm-rust.git" }
+wasm-bindgen = "0.2.95"
+
+zkp = { path = "./src/zkp" }
+wrapper_macro = { version = "0.1.0", path = "../wrapper_macro" }