aboutsummaryrefslogtreecommitdiff
path: root/guests/dvt-circuits/Cargo.toml
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-02-17 18:37:08 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-04-15 14:39:37 +0300
commitefdd6857ab7e9b25e6c3e173fc32ca63812ac21c (patch)
tree04d5dd673a77bc267b07775e9ef1bad577d53c54 /guests/dvt-circuits/Cargo.toml
parent32b2f8b3a630ebf04259457c5f9522b6bc71b7ff (diff)
downloadzkVMs-benchmarks-efdd6857ab7e9b25e6c3e173fc32ca63812ac21c.tar
zkVMs-benchmarks-efdd6857ab7e9b25e6c3e173fc32ca63812ac21c.tar.gz
zkVMs-benchmarks-efdd6857ab7e9b25e6c3e173fc32ca63812ac21c.zip
feat(guests): Add dvt-circuits cratedvt-circuits-port
This is a port of https://github.com/metacraft-labs/dvt-circuits Co-authored-by: Marto <martindobrev0@gmail.com>
Diffstat (limited to 'guests/dvt-circuits/Cargo.toml')
-rw-r--r--guests/dvt-circuits/Cargo.toml36
1 files changed, 36 insertions, 0 deletions
diff --git a/guests/dvt-circuits/Cargo.toml b/guests/dvt-circuits/Cargo.toml
new file mode 100644
index 0000000..0f01828
--- /dev/null
+++ b/guests/dvt-circuits/Cargo.toml
@@ -0,0 +1,36 @@
+[package]
+name = "finalization_prove"
+version = "1.1.0"
+edition = "2021"
+publish = false
+
+[workspace]
+members = [
+ "bls_utils",
+ "dvt_abi",
+]
+
+[workspace.package]
+edition = "2021"
+version = "0.1.0"
+authors = ["Martin Dobrev <martindobrev0@gmail.com>", "Grigor Gachev", "Zahary Karadjov" ]
+keywords = ["nimbus", "dvt"]
+categories = ["cryptography"]
+repository = "https://github.com/metacraft-labs/dvt-circuits"
+license = "MIT OR Apache-2.0"
+
+[dependencies]
+bls12_381 = { git = "https://github.com/sp1-patches/bls12_381", features = ["experimental"] }
+ff = "0.13.0"
+rand = "0.8.5"
+group = "0.13.0"
+serde = "1.0.216"
+dvt_abi = { path = "./dvt_abi" }
+bls_utils = { path = "./bls_utils" }
+sha2 = "0.10"
+hex = "0.4"
+
+guests_macro = { version = "0.1.0", path = "../../guests_macro" }
+
+[features]
+no_std = []