This repository was archived by the owner on Mar 19, 2024. It is now read-only.
This repository was archived by the owner on Mar 19, 2024. It is now read-only.
Allow usage without rustup #81
Closed
Description
I'm using Atom with ide-rust
plugin on ArchLinux with rust
installed through the system package manager, pacman
. Everytime I create or open a .rs
-file in Atom I see a popup asking me to install the nightly toolchain with rustup
. However, I am not going to use rustup
because pacman
can do just fine and I dislike having a thousand different package managers installed on my system. Especially since rust already brings its own package manager, cargo
.
However, some features such as code completion are not available. I guess this is due to ide-rust
not knowing where to find the sources of rust, which can be found at /usr/lib/rustlib/src/rust/src/
. How can I tell ide-rust
where to find those sources without using rustup
?