Upgrade Rust to 1.80.0

This commit is contained in:
Josh Wu
2025-09-17 13:26:26 +08:00
parent a25427305c
commit 502b80af0d
2 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ jobs:
strategy: strategy:
matrix: matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] 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 fail-fast: false
steps: steps:
- name: Check out from Git - name: Check out from Git
@@ -72,7 +72,7 @@ jobs:
- name: Check License Headers - name: Check License Headers
run: cd rust && cargo run --features dev-tools --bin file-header check-all run: cd rust && cargo run --features dev-tools --bin file-header check-all
- name: Rust Build - 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 # Lints after build so what clippy needs is already built
- name: Rust Lints - name: Rust Lints
run: cd rust && cargo fmt --check && cargo clippy --all-targets -- --deny warnings && cargo clippy --all-features --all-targets -- --deny warnings run: cd rust && cargo fmt --check && cargo clippy --all-targets -- --deny warnings && cargo clippy --all-features --all-targets -- --deny warnings

View File

@@ -10,7 +10,7 @@ documentation = "https://docs.rs/crate/bumble"
authors = ["Marshall Pierce <marshallpierce@google.com>"] authors = ["Marshall Pierce <marshallpierce@google.com>"]
keywords = ["bluetooth", "ble"] keywords = ["bluetooth", "ble"]
categories = ["api-bindings", "network-programming"] categories = ["api-bindings", "network-programming"]
rust-version = "1.76.0" rust-version = "1.80.0"
# https://github.com/frewsxcv/cargo-all-features#options # https://github.com/frewsxcv/cargo-all-features#options
[package.metadata.cargo-all-features] [package.metadata.cargo-all-features]