23 строки
745 B
TOML
23 строки
745 B
TOML
# See https://rust-lang.github.io/rustup/overrides.html for details on how this file works
|
|
# and how you can override the choices made herein.
|
|
|
|
# See also:
|
|
# * ./docs/design/rust-versions.md for our policy on what version is specified here.
|
|
# * ./.circleci/config.yml which also specifies the minimum rust version
|
|
# supported and used in CI.
|
|
|
|
[toolchain]
|
|
channel = "1.79.0"
|
|
targets = [
|
|
"aarch64-linux-android",
|
|
"armv7-linux-androideabi",
|
|
"i686-linux-android",
|
|
"x86_64-linux-android",
|
|
"aarch64-apple-ios",
|
|
"x86_64-apple-ios",
|
|
"aarch64-apple-ios-sim",
|
|
"aarch64-apple-darwin",
|
|
]
|
|
# The "rust-src" component is currently required for building for the M1 iOS simulator.
|
|
components = ["clippy", "rustfmt", "rust-src"]
|