feat(rust): Update to 1.65

This commit is contained in:
OlivierDehaene 2022-11-14 13:59:56 +01:00
parent dccd5c2b1a
commit 6c781025ae
3 changed files with 4 additions and 3 deletions

View File

@ -12,3 +12,4 @@ exclude = [
debug = 1
incremental = true
lto = "off"
panic = "abort"

View File

@ -1,4 +1,4 @@
FROM rust:1.64 as router-builder
FROM rust:1.65 as router-builder
WORKDIR /usr/src
@ -10,7 +10,7 @@ WORKDIR /usr/src/router
RUN cargo install --path .
FROM rust:1.64 as launcher-builder
FROM rust:1.65 as launcher-builder
WORKDIR /usr/src

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "1.64.0"
channel = "1.65.0"
components = ["rustfmt", "clippy"]