debug optimizations to speed withness generation

This commit is contained in:
Dmitriy Ryajov 2023-03-27 18:53:56 -06:00
parent 389c0bb050
commit f2064b8925
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
1 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,8 @@ name = "codex-storage-proofs"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.dev]
opt-level = 3
[lib] [lib]
crate-type = [ crate-type = [
@ -17,7 +18,9 @@ ark-bn254 = { version = "0.3.0" }
ark-ec = { version = "0.3.0", default-features = false, features = [ ark-ec = { version = "0.3.0", default-features = false, features = [
"parallel", "parallel",
] } ] }
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = ["parallel"] } ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = [
"parallel",
] }
ark-std = { version = "0.3.0", default-features = false, features = [ ark-std = { version = "0.3.0", default-features = false, features = [
"parallel", "parallel",
] } ] }
@ -32,3 +35,4 @@ once_cell = "1.17.1"
serde = "1.0.156" serde = "1.0.156"
serde_json = "1.0.94" serde_json = "1.0.94"
num-traits = "0.2.15" num-traits = "0.2.15"
ark-relations = { version = "0.4.0", features = ["std", "tracing-subscriber"] }