mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-02 18:20:03 +00:00
21 lines
454 B
Rust
21 lines
454 B
Rust
use std::path::PathBuf;
|
|
|
|
use compact_str::CompactString;
|
|
|
|
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 version: Option<CompactString>,
|
|
pub manifest_path: Option<PathBuf>,
|
|
pub cli_overrides: PkgOverride,
|
|
pub desired_targets: DesiredTargets,
|
|
pub quiet: bool,
|
|
}
|