Multirust-rs is a reimplementation of multirust in rust. It provides both a command line interface, and a rust library, so it's trivial to integrate it with external tools.
Currently an installer is the missing piece. Manual installation is described below:
cargo build --release
to build the multirust-rs binaryrustc
, cargo
, rustdoc
, and optionally rust-lldb
and rust-gdb
multirust-rs
binary``` USAGE: multirust-rs [FLAGS] [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: ctl default Set the default toolchain. delete-data Delete all user metadata. doc Open the documentation for the current toolchain. help Prints this message list-overrides List all overrides. list-toolchains List all installed toolchains. override Set the toolchain override. remove-override Remove an override. remove-toolchain Uninstall a toolchain. run Run a command. show-default Show information about the current default. show-override Show information about the current override. update Install or update a given toolchain. upgrade-data Upgrade the ~/.multirust directory. which Report location of the currently active Rust tool. ```
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT