mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 12:38:43 +00:00
22 lines
468 B
Rust
22 lines
468 B
Rust
use std::path::PathBuf;
|
|
|
|
use semver::VersionReq;
|
|
|
|
use crate::{metafiles::binstall_v1::MetaData, DesiredTargets, PkgOverride};
|
|
|
|
mod resolve;
|
|
pub use resolve::*;
|
|
|
|
mod install;
|
|
pub use install::*;
|
|
|
|
pub struct Options {
|
|
pub no_symlinks: bool,
|
|
pub dry_run: bool,
|
|
pub force: bool,
|
|
pub version_req: Option<VersionReq>,
|
|
pub manifest_path: Option<PathBuf>,
|
|
pub cli_overrides: PkgOverride,
|
|
pub desired_targets: DesiredTargets,
|
|
pub quiet: bool,
|
|
}
|