make bin target

This commit is contained in:
Drygin 2019-07-01 18:53:01 +03:00
parent dfcebf93e3
commit a10e5e2cce
4 changed files with 2 additions and 10 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
build/
node_modules/
target/
.idea/

View File

@ -5,10 +5,6 @@ version = "0.0.1"
publish = false
edition = "2018"
[lib]
name = "prover"
path = "src/lib.rs"
[dependencies]
rand = "0.4"
hex = "0.3.2"

View File

@ -1,3 +0,0 @@
#[allow(dead_code)]
mod circuit;

View File

@ -328,9 +328,7 @@ pub fn encode_fs_into_fr<E: JubjubEngine>(input: E::Fs)
converted
}
#[test]
fn test_the_circuit() {
fn main() {
use bellman::pairing::bn256::*;
use rand::{SeedableRng, Rng, XorShiftRng, Rand};
use sapling_crypto::circuit::test::*;