Warning
Rust applications belong in your :doc:`home <basics-home>`, not in your :doc:`docroot <web-documentroot>`.
Rust is a multi-paradigm programming language focused on performance and safety, especially safe concurrency. Rust is syntactically similar to C++, but provides memory safety without using garbage collection. The compiler is free and open-source software dual-licensed under the MIT License and Apache License 2.0.
The Rust project uses a concept called ‘release channels’ to manage releases. For now we support the stable channel.
Packaged Rust projects are called crates. The crates.io website serves as an official repository for them. You can install binaries from there with the cargo install command:
[isabell@stardust ~] cargo install package-nameThis downloads the source for package-name and compiles it. The resulting binaries are placed into $HOME/.cargo/bin/. Which is already included in your $PATH (unless you changed our default setup). You can find ways to configure this in the documentation for cargo install.