feat: add rust-analyzer to all rust outputs

This commit is contained in:
Youwen Wu 2024-08-18 14:45:23 -07:00
parent 9abdc1e6be
commit a4e9d79292
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -60,18 +60,21 @@
rustBeta = pkgs.mkShell { rustBeta = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
rust-bin.beta.latest.default rust-bin.beta.latest.default
rust-analyzer
]; ];
}; };
rustNightly = pkgs.mkShell { rustNightly = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
rust-bin.nightly.latest.default rust-bin.nightly.latest.default
rust-analyzer
]; ];
}; };
rustStable = pkgs.mkShell { rustStable = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
rust-bin.stable.latest.default rust-bin.stable.latest.default
rust-analyzer
]; ];
}; };