forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrust-toolchain.toml
More file actions
14 lines (13 loc) · 810 Bytes
/
rust-toolchain.toml
File metadata and controls
14 lines (13 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[toolchain]
# This specifies the version of Rust we use to build.
# Individual crates in the workspace may support a lower version, as indicated by `rust-version` field in each crate's `Cargo.toml`.
# The version specified below, should be at least as high as the maximum `rust-version` within the workspace.
# XXX: Do not bump this version yet. 1.87 adds supports for bulk memory in wasm
# and we do not support contracts with bulk memory yet. Increasing the version
# number here will make it harder for contract developers to build and test
# their contracts. See
# https://near.zulipchat.com/#narrow/channel/295306-contract-runtime/topic/bulk.20memory.20support
# for more details.
channel = "1.86.0"
components = ["rustfmt", "clippy", "rust-analyzer", "rust-src"]
targets = ["wasm32-unknown-unknown"]