From c8614a0d063d89f22ef2bba8a3079d827bd59381 Mon Sep 17 00:00:00 2001 From: Datawater <86855332+datawater@users.noreply.github.com> Date: Sun, 16 Jun 2024 01:15:20 +0400 Subject: [PATCH] Made github workflows use nightly rust --- .github/workflows/rust.yml | 4 ++-- Cargo.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 12c5913..d7ecbb5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,6 +18,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build - run: cargo build --verbose + run: cargo +nightly build --verbose - name: Run tests - run: cargo test --verbose + run: cargo +nightly test --verbose diff --git a/Cargo.toml b/Cargo.toml index 6bbe285..79d8df7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,7 @@ codegen-units = 2048 [profile.bolt] inherits = "release" strip = false +debug = true [profile.profile] inherits = "release"