Fixed new Clippy Warnings
This commit is contained in:
parent
d59adf0990
commit
2b9efe97ba
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ hmac = { version = "0.12.1", optional = true, features = ["reset"] }
|
|||
pbkdf2 = {version = "0.11.0", optional = true }
|
||||
sha1 = {version = "0.10.1", optional = true }
|
||||
time = { version = "0.3.7", features = ["formatting", "macros" ], optional = true }
|
||||
zstd = { version = "0.11", optional = true }
|
||||
zstd = { version = "0.11.2", optional = true }
|
||||
|
||||
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
||||
crossbeam-utils = "0.8.8"
|
||||
|
|
|
@ -11,7 +11,7 @@ fn real_main() -> i32 {
|
|||
return 1;
|
||||
}
|
||||
let fname = std::path::Path::new(&*args[1]);
|
||||
let zipfile = std::fs::File::open(&fname).unwrap();
|
||||
let zipfile = std::fs::File::open(fname).unwrap();
|
||||
|
||||
let mut archive = zip::ZipArchive::new(zipfile).unwrap();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue