diff --git a/Cargo.toml b/Cargo.toml index 95a835a..09ff7dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,8 @@ name = "codex-storage-proofs" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.dev] +opt-level = 3 [lib] crate-type = [ @@ -17,7 +18,9 @@ ark-bn254 = { version = "0.3.0" } ark-ec = { version = "0.3.0", default-features = false, features = [ "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 = [ "parallel", ] } @@ -32,3 +35,4 @@ once_cell = "1.17.1" serde = "1.0.156" serde_json = "1.0.94" num-traits = "0.2.15" +ark-relations = { version = "0.4.0", features = ["std", "tracing-subscriber"] }