summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <kontakt@beyermatthias.de>2023-09-30 09:26:24 +0200
committerMatthias Beyer <kontakt@beyermatthias.de>2023-10-04 12:57:42 +0200
commit23ed2e720456a16bf6f747b49ec21356bf31b061 (patch)
tree289db6c9323e9dd397b3aaf538aed279db04d0de
parentd91069f0944f2199d4b0570f1c4c3797c2cc8608 (diff)
Fix: Toolchain file must be tomlrust-toolchain-to-toml
The old format for the toolchain file is outdated. Move it to be a TOML file. Signed-off-by: Matthias Beyer <kontakt@beyermatthias.de>
-rw-r--r--rust-toolchain1
-rw-r--r--rust-toolchain.toml2
2 files changed, 2 insertions, 1 deletions
diff --git a/rust-toolchain b/rust-toolchain
deleted file mode 100644
index 832e9af..0000000
--- a/rust-toolchain
+++ /dev/null
@@ -1 +0,0 @@
-1.70.0
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
new file mode 100644
index 0000000..22048ac
--- /dev/null
+++ b/rust-toolchain.toml
@@ -0,0 +1,2 @@
+[toolchain]
+channel = "1.70.0"