aboutsummaryrefslogtreecommitdiff
path: root/rust-toolchain.toml
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-07-28 01:37:31 -0500
committerCody <cody@codyq.dev>2023-07-28 01:37:31 -0500
commit1555738be40d8fceb1d5888ba47c3bac84f5d2c1 (patch)
tree51fba7945698783cb1ab2d86607c768f7597018b /rust-toolchain.toml
parent60ed283bace6596405eebd5670ce195f4c4f4409 (diff)
downloadsloth-1555738be40d8fceb1d5888ba47c3bac84f5d2c1.tar.gz
Fixed issues with building Sloth
- Made Sloth build with Rust stable again - Made a rust-toolchain file so everyone uses the same version of Rust - Fixed the GitHub Actions to have LLVM so it can actually build - Fixed the Nix package to have LLVM so it can actually build
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r--rust-toolchain.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index 4e70b08..0a8868e 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -1,2 +1,5 @@
[toolchain]
-channel = "nightly-2023-06-15"
+channel = "nightly-2023-06-19"
+components = [ "rust-src", "rust-analyzer" ]
+targets = [ "wasm32-unknown-unknown" ]
+profile = "default"