add rust-toolchain.toml file

This commit is contained in:
josh@gitbutler.com 2023-12-11 11:09:19 +01:00 committed by GitButler
parent 911bb88f3f
commit dc06dadb10
2 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ jobs:
- 'packages/butler/**'
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'
node:
- 'packages/ui/**'
- 'package.json'

4
rust-toolchain.toml Normal file
View File

@ -0,0 +1,4 @@
[toolchain]
channel = "nightly-2023-12-08"
components = [ "rustfmt", "rustc-dev", "clippy", "rust-src", "llvm-tools-preview" ]
profile = "minimal"