Skip to content

Commit

Permalink
Release/v0.2.16 (#80)
Browse files Browse the repository at this point in the history
* Default option when non-config is foundry.toml

* fixing clippy
  • Loading branch information
mario-eth authored Jul 1, 2024
1 parent 528ef13 commit 3028019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/*"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 3028019

Please sign in to comment.