IOTA is a asset-oriented programming model powered by the Move programming language. IOTA is a project under active development by the IOTA Foundation.
The Rust language conventions used in this repository can be found in Rust Conventions.
In order to use the unstable features specified in rustfmt.toml, you must have the correct nightly toolchain component installed.
rustup toolchain install nightly --component rustfmt --allow-downgrade
This can be used regardless of the default toolchain to format the code using the following command.
cargo +nightly fmt
For convenience, it is recommended that developers configure their IDEs to automatically format files on save.
settings.json
{
"[rust]": {
"editor.formatOnSave": true,
},
"rust-analyzer.rustfmt.extraArgs": [
"+nightly"
]
}