mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-15 08:20:03 +00:00
21 lines
468 B
Rust
21 lines
468 B
Rust
//! Concrete Binstall operations.
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use semver::VersionReq;
|
|
|
|
use crate::{manifests::cargo_toml_binstall::PkgOverride, DesiredTargets};
|
|
|
|
pub mod install;
|
|
pub mod resolve;
|
|
|
|
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,
|
|
}
|