rustup-configurator

Helper for listing and adding rustup targets and toolchains (coming)

3 releases

0.1.2 Jun 2, 2024
0.1.1 Oct 29, 2023
0.1.0 Feb 14, 2023
Download history 25/week @ 2024-07-30 2/week @ 2024-09-10 9/week @ 2024-09-17 21/week @ 2024-09-24 20/week @ 2024-10-01

214 downloads per month

MIT license

7KB
106 lines

Rustup Configurator

This crate provides a simple interface to the rustup target command for listing and adding targets in Rust. It's designed to make managing your Rust targets easier and more efficient.

Usage

use rustup_configurator::target::Target;

// Get a list of all targets and if they are installed
let list: Vec<Target> = rustup_configurator::target::list().unwrap();

// Get all installed targets
let installed: Vec<Target> = rustup_configurator::target::installed().unwrap();

// Install some targets
rustup_configurator::target::install(&["aarch64-apple-ios".into()]).unwrap();
# Contributions

Contributions are welcome! Please open an issue or PR on GitHub


lib.rs:

This crate provides a simple interface to the rustup target command for listing and adding targets.

use rustup_configurator::target::Target;

// get a list of all targets and if they are installed
let list: Vec<Target> = rustup_configurator::target::list().unwrap();

// get all installed targets
let installed: Vec<Target> = rustup_configurator::target::installed().unwrap();

// install some targets
rustup_configurator::target::install(&["aarch64-apple-ios".into()]).unwrap();

Dependencies

~0.4–0.8MB
~19K SLoC