librustzcash/zcash_primitives/src/lib.rs

20 lines
351 B
Rust
Raw Normal View History

2018-08-23 15:35:39 -07:00
#[macro_use]
extern crate lazy_static;
2018-08-23 15:37:23 -07:00
extern crate blake2_rfc;
extern crate byteorder;
extern crate ff;
2018-08-23 15:35:39 -07:00
extern crate pairing;
extern crate rand;
2018-08-23 15:35:39 -07:00
extern crate sapling_crypto;
use sapling_crypto::jubjub::JubjubBls12;
pub mod sapling;
mod serialize;
2018-08-23 15:35:39 -07:00
pub mod transaction;
lazy_static! {
static ref JUBJUB: JubjubBls12 = { JubjubBls12::new() };
}