mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-07-30 20:11:23 +00:00
Test the right things
This commit is contained in:
@@ -16,4 +16,6 @@ addons:
|
|||||||
- libgmp-dev
|
- libgmp-dev
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo run --release
|
- cd tinysnark && cargo test
|
||||||
|
- cargo run --release
|
||||||
|
- cargo test
|
14
Cargo.toml
14
Cargo.toml
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bellman"
|
|
||||||
version = "0.0.1"
|
|
||||||
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
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"
|
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]
|
[dependencies.tinysnark]
|
||||||
path = "tinysnark"
|
path = "tinysnark"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
extern crate tinysnark;
|
extern crate tinysnark;
|
||||||
|
|
||||||
fn main() {
|
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;
|
extern crate libc;
|
||||||
|
|
||||||
mod arith;
|
mod arith;
|
||||||
|
Reference in New Issue
Block a user