aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9e380ec..2eff106 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -27,11 +27,7 @@ fn parse_license<'a>(lic_str: &'a str) -> Vec<&'a str> {
.collect()
}
-pub fn gen_ebuild_data(
- verbose: u32,
- quiet: bool,
- manifest_path: Option<PathBuf>,
-) -> Result<EbuildConfig> {
+pub fn gen_ebuild_data(manifest_path: Option<PathBuf>) -> Result<EbuildConfig> {
let mut cmd = cargo_metadata::MetadataCommand::new();
if let Some(path) = manifest_path {