forked from zcash/halo2
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add halo2_debug package (#346)
- Loading branch information
Showing
10 changed files
with
510 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ members = [ | |
"halo2_frontend", | ||
"halo2_middleware", | ||
"halo2_backend", | ||
"halo2_debug", | ||
"p3_frontend", | ||
] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[package] | ||
name = "halo2_debug" | ||
version = "0.3.0" | ||
authors = [ | ||
"Privacy Scaling Explorations team", | ||
] | ||
edition = "2021" | ||
rust-version = "1.66.0" | ||
description = """ | ||
Halo2 Debug. This package contains utilities for debugging and testing within | ||
the halo2 ecosystem. | ||
""" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/privacy-scaling-explorations/halo2" | ||
documentation = "https://privacy-scaling-explorations.github.io/halo2/" | ||
categories = ["cryptography"] | ||
keywords = ["halo", "proofs", "zkp", "zkSNARKs"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"] | ||
|
||
[dependencies] | ||
ff = "0.13" | ||
halo2curves = { version = "0.6.1", default-features = false } | ||
num-bigint = "0.4.5" | ||
halo2_middleware = { path = "../halo2_middleware" } |
Oops, something went wrong.