install-framework

Crates.ioinstall-framework
lib.rsinstall-framework
version1.0.0
sourcesrc
created_at2021-04-13 16:42:53.115934
updated_at2021-04-13 16:42:53.115934
descriptionA simple and lightweight cross-platform install framework written in Rust
homepage
repositoryhttps://gitlab.com/Yuri6037/install-framework
max_upload_size
id382981
size6,534
(Yuri6037)

documentation

README

Install Framework

Install Framework is a framework to create cross-platform installers in Rust.

Usage

  • Create a binary crate (cargo new --bin [name of installer])
  • Reference the main install-framework crate (https://crates.io/crates/install-framework)
  • Fill an InstallerBuilder and call install_framework::run with your builder
  • Apply the following code in your Cargo.toml:
[features]
cli = ["install-framework/cli"]
gui = ["install-framework/gui"]
  • Compile with cargo build --features cli or cargo build --features gui
Commit count: 152

cargo fmt