From cdd8b431aa28510270ff330ee0f90551e14dd075 Mon Sep 17 00:00:00 2001 From: specCon18 Date: Wed, 20 Sep 2023 23:50:44 -0400 Subject: [PATCH] working test --- src/lib/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/lib.rs b/src/lib/lib.rs index 39d08ab..860c835 100644 --- a/src/lib/lib.rs +++ b/src/lib/lib.rs @@ -2,6 +2,9 @@ use data_encoding::HEXUPPER; use ring::digest::{Context, Digest, SHA256}; use std::{fs::{self, File},io::{BufReader, Read},os::unix::fs::PermissionsExt,path::Path}; + + + pub mod extractors; #[cfg(test)] @@ -10,6 +13,7 @@ mod tests { use std::fs; use std::path::PathBuf; use std::path::Path; + use ring::digest::SHA256; use extractors::{ extract_zip, extract_rar, @@ -217,4 +221,4 @@ fn test_extract_zip() { flags } -} \ No newline at end of file +}