From 3afccb194e7bd4e658c491ded065908a43709e42 Mon Sep 17 00:00:00 2001 From: Jubilee Young Date: Fri, 3 Jan 2025 16:30:33 -0800 Subject: [PATCH] raise backtrace MSRV to allow `inline_const` --- .github/workflows/main.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d0719b4..4330d2f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -256,7 +256,7 @@ jobs: with: submodules: true - name: Install Rust - run: rustup update 1.73.0 --no-self-update && rustup default 1.73.0 + run: rustup update 1.79.0 --no-self-update && rustup default 1.79.0 - run: cargo build miri: diff --git a/Cargo.toml b/Cargo.toml index 7261ff77..4f373035 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ autoexamples = true autotests = true edition = "2021" exclude = ["/ci/"] -rust-version = "1.65.0" +rust-version = "1.79.0" [workspace] members = ['crates/cpp_smoke_test', 'crates/as-if-std']