Add field cli_overrides to binstall::Options

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-21 15:00:01 +10:00
parent f09004b5b7
commit aa88dce215
No known key found for this signature in database
GPG key ID: 591C0B03040416D6
3 changed files with 8 additions and 9 deletions

View file

@ -1,5 +1,7 @@
use std::path::PathBuf;
use crate::PkgOverride;
mod resolve;
pub use resolve::*;
@ -11,4 +13,5 @@ pub struct Options {
pub dry_run: bool,
pub version: Option<String>,
pub manifest_path: Option<PathBuf>,
pub cli_overrides: PkgOverride,
}