Move rust components to devShell instead of global rust-toolchain

This commit is contained in:
Florian RICHER 2024-06-02 12:55:53 +02:00
parent 7b82088d90
commit c2ec1d9504
2 changed files with 1 additions and 3 deletions

View file

@ -25,11 +25,10 @@
devShells = {
default = pkgs.mkShell {
buildInputs = [
rust
(rust.override { extensions = ["rust-src" "rust-analyzer"]; })
nodejs
pkgs.cargo-leptos
pkgs.dart-sass
pkgs.rust-analyzer
];
};
};

View file

@ -1,4 +1,3 @@
[toolchain]
channel = "nightly"
components = ["rust-std", "rust-src", "rustc-dev" ]
targets = ["wasm32-unknown-unknown"]