diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-01-17 18:49:41 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-01-17 18:49:50 +0200 |
| commit | 3f532203df67bfc0839416962ac9c012b127105d (patch) | |
| tree | 9f4ca730780f169932b2ba95ec6c11ddb236504b /zkvms/nexus/Cargo.toml | |
| parent | 254e1ebf2127d2469639a2f0f786b6876a3eb78c (diff) | |
| download | zkVMs-benchmarks-3f532203df67bfc0839416962ac9c012b127105d.tar zkVMs-benchmarks-3f532203df67bfc0839416962ac9c012b127105d.tar.gz zkVMs-benchmarks-3f532203df67bfc0839416962ac9c012b127105d.zip | |
feat(zkvms): Add nexus host
Diffstat (limited to 'zkvms/nexus/Cargo.toml')
| -rw-r--r-- | zkvms/nexus/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/zkvms/nexus/Cargo.toml b/zkvms/nexus/Cargo.toml new file mode 100644 index 0000000..c966357 --- /dev/null +++ b/zkvms/nexus/Cargo.toml @@ -0,0 +1,20 @@ +[workspace] +resolver = "2" +members = [ + "host", + "guest/guests/*", +] + +[patch.crates-io] +ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives/", rev = "d27a5c8" } +ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/", rev = "2ca3bd7" } +ark-ff = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" } +ark-ec = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" } +ark-serialize = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" } +ark-poly = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" } +ark-test-curves = { git = "https://github.com/arkworks-rs/algebra/", rev = "2a80c54" } +ark-poly-commit = { git = "https://github.com/arkworks-rs/poly-commit/", rev = "12f5529" } +ark-bn254 = { git = "https://github.com/arkworks-rs/curves/", rev = "8c0256a" } +ark-pallas = { git = "https://github.com/arkworks-rs/curves/", rev = "8c0256a" } +ark-vesta = { git = "https://github.com/arkworks-rs/curves/", rev = "8c0256a" } +ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves/", rev = "3fded1f" } |
