Skip to content

Commit

Permalink
fixes regression from arkworks-rs/std#29
Browse files Browse the repository at this point in the history
  • Loading branch information
swasilyev committed Apr 6, 2021
1 parent 9b74e85 commit dbe2c20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ zcash_proofs = { git = "https://github.com/zcash/librustzcash", version = "0.4"
neptune = { git = "https://github.com/w3f/neptune", branch = "librustzcash-bis" }
typenum = "1.11.2"

bench-utils = { git = "https://github.com/scipr-lab/zexe", features = ["print-trace"]}

[patch.crates-io]
bellman = { git = "https://github.com/w3f/bellman.git", branch="neptune-bis" }

Expand Down Expand Up @@ -67,6 +65,7 @@ features = ["zeroize_derive"]
[dev-dependencies]
rand_xorshift = "0.2"
rand_chacha = "0.2"
ark-std = { git = "https://github.com/arkworks-rs/utils" }

[features]
default = ["rand_chacha"] # "std",
Expand Down
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ impl<SRS: Copy+Clone> Clone for RingSRS<SRS> {

#[cfg(test)]

#[macro_use]
extern crate bench_utils;

mod tests {
use std::fs::File;

Expand All @@ -112,6 +109,8 @@ mod tests {
use super::*;
use ::bls12_381::Bls12;

use ark_std::{end_timer, start_timer};

#[test]
fn test_completeness() {
let depth = 2;
Expand Down

0 comments on commit dbe2c20

Please sign in to comment.