automatically install dependencies

This commit is contained in:
2024-07-13 08:29:11 +02:00
parent f42738cfd9
commit 786621f9c0
6 changed files with 131 additions and 22 deletions

View File

@@ -43,6 +43,8 @@ pub struct Config {
pub engine: String,
#[serde(default)]
pub use_https: bool,
#[serde(default)]
pub skip_redist: bool,
}
impl Default for Config {
@@ -56,6 +58,7 @@ impl Default for Config {
args: String::default(),
engine: String::default(),
use_https: true,
skip_redist: false,
}
}
}