16 lines
469 B
TOML
16 lines
469 B
TOML
[toolchain]
|
|
# 1.85 is the first stable release supporting Rust edition 2024 (required by
|
|
# some build-time dependencies of bindgen). Update alongside flutter_rust_bridge
|
|
# major releases.
|
|
channel = "stable"
|
|
targets = [
|
|
"aarch64-apple-ios",
|
|
"aarch64-apple-darwin",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-linux-android",
|
|
"x86_64-linux-android",
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-pc-windows-msvc",
|
|
]
|
|
components = ["rustfmt", "clippy", "rust-src"]
|