From 14338bbf7f10c0a506d216140bb6e7f47cf8cb9b Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Mon, 19 Feb 2024 09:44:30 -0500 Subject: [PATCH] Relax Rust version to 1.65 Signed-off-by: Moritz Hoffmann --- .github/workflows/test.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b0b55f4..053b32f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - - run: rustup update 1.70 --no-self-update && rustup default 1.70 + - run: rustup update 1.65 --no-self-update && rustup default 1.65 - run: cargo build --workspace --lib --bins --examples --tests - run: cargo test --workspace --lib --bins --examples --tests - run: rustup component add rustfmt diff --git a/Cargo.toml b/Cargo.toml index 89c7156..5514987 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Moritz Hoffmann "] description = "A flat container representation for Rust" license = "MIT OR Apache-2.0" repository = "https://github.com/antiguru/flatcontainer" -rust-version = "1.70" +rust-version = "1.65" [dependencies] cfg-if = "1.0"