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