diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-04-26 08:27:47 +1200 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-04-26 08:28:17 +1200 |
commit | 8c30c7fbe9b869fb78765a4b7994858f0c8f8182 (patch) | |
tree | 3af4df8784ea2e3480d3282efaa5555831050d33 | |
parent | 23d61c0a0192dac7e79cb42c71a3efff705f19c6 (diff) | |
download | torque-asm-8c30c7fbe9b869fb78765a4b7994858f0c8f8182.zip |
Add a rust-toolchain file
This file will make the project build with the nightly toolchain by
default, which will make building the project slightly easier for other
people.
-rw-r--r-- | rust-toolchain.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..a25e7e0 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "nightly" + |