Crates.io | rustup-configurator |
lib.rs | rustup-configurator |
version | 0.1.2 |
source | src |
created_at | 2023-02-14 16:30:23.20541 |
updated_at | 2024-06-02 15:04:27.914319 |
description | Helper for listing and adding rustup targets and toolchains (coming) |
homepage | |
repository | https://github.com/akesson/rustup-configurator |
max_upload_size | |
id | 785049 |
size | 14,956 |
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.
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