From 502b80af0d2ac04e82ff505c12be93fd5d8f44eb Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Wed, 17 Sep 2025 13:26:26 +0800 Subject: [PATCH] Upgrade Rust to 1.80.0 --- .github/workflows/python-build-test.yml | 4 ++-- rust/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-build-test.yml b/.github/workflows/python-build-test.yml index 4f2259b..54a1e0c 100644 --- a/.github/workflows/python-build-test.yml +++ b/.github/workflows/python-build-test.yml @@ -49,7 +49,7 @@ jobs: strategy: matrix: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] - rust-version: [ "1.76.0", "stable" ] + rust-version: [ "1.80.0", "stable" ] fail-fast: false steps: - name: Check out from Git @@ -72,7 +72,7 @@ jobs: - name: Check License Headers run: cd rust && cargo run --features dev-tools --bin file-header check-all - name: Rust Build - run: cd rust && cargo build --all-targets && cargo build-all-features --all-targets + run: cd rust && cargo build --all-targets && cargo build-all-features # Lints after build so what clippy needs is already built - name: Rust Lints run: cd rust && cargo fmt --check && cargo clippy --all-targets -- --deny warnings && cargo clippy --all-features --all-targets -- --deny warnings diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 73c9ac3..aa77602 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -10,7 +10,7 @@ documentation = "https://docs.rs/crate/bumble" authors = ["Marshall Pierce "] keywords = ["bluetooth", "ble"] categories = ["api-bindings", "network-programming"] -rust-version = "1.76.0" +rust-version = "1.80.0" # https://github.com/frewsxcv/cargo-all-features#options [package.metadata.cargo-all-features]