mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 13:38:43 +00:00
14 lines
239 B
Rust
14 lines
239 B
Rust
use std::path::PathBuf;
|
|
|
|
mod resolve;
|
|
pub use resolve::*;
|
|
|
|
mod install;
|
|
pub use install::*;
|
|
|
|
pub struct Options {
|
|
pub no_symlinks: bool,
|
|
pub dry_run: bool,
|
|
pub version: Option<String>,
|
|
pub manifest_path: Option<PathBuf>,
|
|
}
|