Add a `rust-toolchain.toml` file

This ensures that the repository is built with a compatible Rust
toolchain.
This commit is contained in:
Jack Grigg 2023-09-22 23:45:47 +01:00 committed by Kris Nuttycombe
parent cd6a8777e0
commit 6082838921
1 changed files with 8 additions and 0 deletions

8
rust-toolchain.toml Normal file
View File

@ -0,0 +1,8 @@
[toolchain]
channel = "1.67.1"
targets = [
"armv7-linux-androideabi",
"aarch64-linux-android",
"i686-linux-android",
"x86_64-linux-android",
]