Add a rust-toolchain.toml file (#538)

This commit is contained in:
Charlie Marsh 2022-11-01 20:34:58 -04:00 committed by GitHub
parent 79ca66ace5
commit 878a94f9cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,6 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: 1.63.0
- uses: actions/cache@v3 - uses: actions/cache@v3
env: env:
cache-name: cache-cargo cache-name: cache-cargo

View File

@ -640,7 +640,7 @@ extend-ignore = [
## Development ## Development
Ruff is written in Rust (1.63.0). You'll need to install the [Rust toolchain](https://www.rust-lang.org/tools/install) Ruff is written in Rust (1.64.0). You'll need to install the [Rust toolchain](https://www.rust-lang.org/tools/install)
for development. for development.
Assuming you have `cargo` installed, you can run: Assuming you have `cargo` installed, you can run:

2
rust-toolchain.toml Normal file
View File

@ -0,0 +1,2 @@
[toolchain]
channel = "1.64.0"