mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-07-30 03:51:22 +00:00
Test the right things
This commit is contained in:
@@ -16,4 +16,6 @@ addons:
|
||||
- libgmp-dev
|
||||
|
||||
script:
|
||||
- cargo run --release
|
||||
- cd tinysnark && cargo test
|
||||
- cargo run --release
|
||||
- cargo test
|
14
Cargo.toml
14
Cargo.toml
@@ -1,13 +1,13 @@
|
||||
[package]
|
||||
name = "bellman"
|
||||
version = "0.0.1"
|
||||
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
||||
homepage = "https://github.com/ebfull/bellman"
|
||||
repository = "https://github.com/ebfull/bellman"
|
||||
documentation = "https://github.com/ebfull/bellman"
|
||||
license = "MIT"
|
||||
description = "zk-SNARK library"
|
||||
documentation = "https://github.com/ebfull/bellman"
|
||||
homepage = "https://github.com/ebfull/bellman"
|
||||
license = "MIT"
|
||||
name = "bellman"
|
||||
repository = "https://github.com/ebfull/bellman"
|
||||
version = "0.0.1"
|
||||
|
||||
[dependencies.tinysnark]
|
||||
path = "tinysnark"
|
||||
version = "0.0.1"
|
||||
version = "0.0.1"
|
||||
|
@@ -1,5 +1,7 @@
|
||||
extern crate tinysnark;
|
||||
|
||||
fn main() {
|
||||
tinysnark::test();
|
||||
}
|
||||
tinysnark::init();
|
||||
|
||||
tinysnark::test();
|
||||
}
|
||||
|
@@ -1,4 +1,5 @@
|
||||
#![feature(box_syntax, test)]
|
||||
#![feature(box_syntax)]
|
||||
#![cfg_attr(test, feature(test))]
|
||||
extern crate libc;
|
||||
|
||||
mod arith;
|
||||
|
Reference in New Issue
Block a user