mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-07-30 20:11:23 +00:00
Remove unneeded extern crate
This commit is contained in:
@@ -469,6 +469,8 @@ impl JubjubBls12 {
|
||||
|
||||
#[test]
|
||||
fn test_jubjub_bls12() {
|
||||
use hex_literal::hex;
|
||||
|
||||
let params = JubjubBls12::new();
|
||||
|
||||
tests::test_suite::<Bls12>(¶ms);
|
||||
|
@@ -6,12 +6,7 @@
|
||||
// Catch documentation errors caused by code changes.
|
||||
#![deny(intra_doc_link_resolution_failure)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
extern crate hex_literal;
|
||||
use lazy_static::lazy_static;
|
||||
|
||||
pub mod block;
|
||||
pub mod constants;
|
||||
|
@@ -6,6 +6,7 @@ use crate::{
|
||||
primitives::Note,
|
||||
};
|
||||
use ff::{BitIterator, PrimeField, PrimeFieldRepr};
|
||||
use lazy_static::lazy_static;
|
||||
use pairing::bls12_381::{Bls12, Fr, FrRepr};
|
||||
use rand_core::{CryptoRng, RngCore};
|
||||
use std::io::{self, Read, Write};
|
||||
|
Reference in New Issue
Block a user