From 6c781025ae1c015a175eb2e319bc6003b5d5bdab Mon Sep 17 00:00:00 2001 From: OlivierDehaene <23298448+OlivierDehaene@users.noreply.github.com> Date: Mon, 14 Nov 2022 13:59:56 +0100 Subject: [PATCH] feat(rust): Update to 1.65 --- Cargo.toml | 1 + Dockerfile | 4 ++-- rust-toolchain.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e23b802..684a5da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,3 +12,4 @@ exclude = [ debug = 1 incremental = true lto = "off" +panic = "abort" diff --git a/Dockerfile b/Dockerfile index 214a0ac..e8455b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 3035581..122f54d 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.64.0" +channel = "1.65.0" components = ["rustfmt", "clippy"] \ No newline at end of file