librustzcash/zcash_primitives/src/lib.rs

18 lines
317 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;
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;
mod serialize;
2018-08-23 15:35:39 -07:00
pub mod transaction;
lazy_static! {
static ref JUBJUB: JubjubBls12 = { JubjubBls12::new() };
}