From 302801944277cce6820046fa32bfff676375ff7c Mon Sep 17 00:00:00 2001 From: m4rio <92288535+mario-eth@users.noreply.github.com> Date: Mon, 1 Jul 2024 03:59:27 -0700 Subject: [PATCH] Release/v0.2.16 (#80) * Default option when non-config is foundry.toml * fixing clippy --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0aadea3..dd9cd3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] authors = ["m4rio"] -categories = ["development-tools", "package-management"] +categories = ["development-tools", "development-tools"] description = "A solidity package manager written in rust. It's minimal and easy within your solidity project. Works best with foundry." edition = "2021" exclude = [".github/*", ".vscode/*"] diff --git a/src/lib.rs b/src/lib.rs index 04cad0c..741ddf7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -611,7 +611,7 @@ libs = ["dependencies"] } } - let archive = File::open(&path_dependency.join("custom_dry_run.zip")); + let archive = File::open(path_dependency.join("custom_dry_run.zip")); let archive = ZipArchive::new(archive.unwrap()); assert!(Path::new(&path_dependency).exists());