cargo fmt

This commit is contained in:
Greg Fitzgerald
2018-05-11 13:06:05 -06:00
parent 7f46aef624
commit bcdb058492
9 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
//! The `hash` module provides functions for creating SHA-256 hashes.
use generic_array::typenum::U32;
use generic_array::GenericArray;
use generic_array::typenum::U32;
use sha2::{Digest, Sha256};
pub type Hash = GenericArray<u8, U32>;