From 251bbc48c2af12660086f0c22a7ea3c9fd8d0ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Mon, 12 Feb 2024 18:08:29 +0100 Subject: [PATCH] chore: Update MSRV to 1.75 --- .github/workflows/tests_and_checks.yml | 2 +- car-mirror-wasm/Cargo.toml | 2 +- car-mirror/Cargo.toml | 2 +- car-mirror/src/common.rs | 2 -- car-mirror/src/incremental_verification.rs | 2 -- 5 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests_and_checks.yml b/.github/workflows/tests_and_checks.yml index 8acc4f8..ad179e2 100644 --- a/.github/workflows/tests_and_checks.yml +++ b/.github/workflows/tests_and_checks.yml @@ -21,7 +21,7 @@ jobs: - stable - nightly # minimum version - - 1.66 + - 1.75 steps: - name: Checkout Repository uses: actions/checkout@v3 diff --git a/car-mirror-wasm/Cargo.toml b/car-mirror-wasm/Cargo.toml index b18f174..3ae7cf7 100644 --- a/car-mirror-wasm/Cargo.toml +++ b/car-mirror-wasm/Cargo.toml @@ -8,7 +8,7 @@ include = ["/src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "Apache-2.0" readme = "README.md" edition = "2021" -rust-version = "1.66" +rust-version = "1.75" documentation = "https://docs.rs/car-mirror-wasm" repository = "https://github.com/fission-codes/rs-car-mirror/tree/main/car-mirror-wasm" authors = ["Philipp Krüger "] diff --git a/car-mirror/Cargo.toml b/car-mirror/Cargo.toml index 706e56c..aa0363d 100644 --- a/car-mirror/Cargo.toml +++ b/car-mirror/Cargo.toml @@ -8,7 +8,7 @@ include = ["/src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "Apache-2.0" readme = "README.md" edition = "2021" -rust-version = "1.66" +rust-version = "1.75" documentation = "https://docs.rs/car-mirror" repository = "https://github.com/fission-codes/rs-car-mirror/tree/main/car-mirror" authors = ["Philipp Krüger "] diff --git a/car-mirror/src/common.rs b/car-mirror/src/common.rs index a68eda4..da62de9 100644 --- a/car-mirror/src/common.rs +++ b/car-mirror/src/common.rs @@ -1,5 +1,3 @@ -#![allow(unknown_lints)] // Because the `instrument` macro contains some `#[allow]`s that rust 1.66 doesn't know yet. - use bytes::Bytes; use deterministic_bloom::runtime_size::BloomFilter; use futures::{future, StreamExt, TryStreamExt}; diff --git a/car-mirror/src/incremental_verification.rs b/car-mirror/src/incremental_verification.rs index ffcb122..30a0eb7 100644 --- a/car-mirror/src/incremental_verification.rs +++ b/car-mirror/src/incremental_verification.rs @@ -1,5 +1,3 @@ -#![allow(unknown_lints)] // Because the `instrument` macro contains some `#[allow]`s that rust 1.66 doesn't know yet. - use crate::{ common::ReceiverState, dag_walk::DagWalk,