Skip to content

Commit

Permalink
Remove rust-toolchain.toml
Browse files Browse the repository at this point in the history
Looks like it breaks cross-compilation.
  • Loading branch information
pborzenkov committed Apr 3, 2024
1 parent 08307a7 commit 2717a76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
toolchain = fenix.packages.${system}.fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "sha256-3St/9/UKo/6lz2Kfq2VmlzHyufduALpiIKaaKX4Pq0g=";
};
toolchain = with fenix.packages.${system};
combine [
stable.toolchain
targets.wasm32-unknown-emscripten.stable.rust-std
];
in {
devShells.default = pkgs.mkShell {
buildInputs = [
Expand Down
3 changes: 0 additions & 3 deletions rust-toolchain.toml

This file was deleted.

0 comments on commit 2717a76

Please sign in to comment.