mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
chore: bump MSRV to 1.70, add rust-toolchain (#2580)
This time I've added a `components` section to rust-toolchain.toml file to explicitly require a rustfmt component. Fingers crossed.
This commit is contained in:
parent
bdd3e77e02
commit
dfd72770e7
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
# syntax = docker/dockerfile:1.2
|
# syntax = docker/dockerfile:1.2
|
||||||
|
|
||||||
FROM rust:1.65-bullseye as builder
|
FROM rust:1.70-bullseye as builder
|
||||||
WORKDIR app
|
WORKDIR app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
3
rust-toolchain.toml
Normal file
3
rust-toolchain.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[toolchain]
|
||||||
|
channel = "1.70"
|
||||||
|
components = [ "rustfmt" ]
|
Loading…
Reference in a new issue