Remove unnecessary imports

This commit is contained in:
Jack Grigg 2020-10-30 13:22:46 +00:00
parent 2a6955102a
commit 0bbcd8c408
4 changed files with 0 additions and 5 deletions

View File

@ -1,5 +1,3 @@
use protobuf_codegen_pure;
fn main() {
protobuf_codegen_pure::Codegen::new()
.out_dir("src/proto")

View File

@ -1,7 +1,6 @@
//! Structs and methods for handling Zcash block headers.
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use hex;
use sha2::{Digest, Sha256};
use std::fmt;
use std::io::{self, Read, Write};

View File

@ -505,7 +505,6 @@ mod tests {
use super::{CommitmentTree, Hashable, IncrementalWitness, MerklePath, PathFiller};
use crate::sapling::Node;
use hex;
use std::convert::TryInto;
use std::io::{self, Read, Write};

View File

@ -1,7 +1,6 @@
//! Structs and methods for handling Zcash transactions.
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use hex;
use sha2::{Digest, Sha256};
use std::fmt;
use std::io::{self, Read, Write};