Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set minimal supported Rust version to 1.75 #30

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: build

on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main

jobs:
msrv:
name: Build on minimal supported rust
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install Rust 1.75
run: |
rustup override set 1.75
rustup update 1.75
rustc --version

- name: Build with default feature
run: cargo build

- name: Build with tokio feature
run: cargo build --features tokio_socket

- name: Build with smol_socket feature
run: cargo build --features smol_socket
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ authors = ["Corentin Henry <[email protected]>"]
name = "netlink-proto"
version = "0.11.4"
edition = "2018"
rust-version = "1.75"

homepage = "https://github.com/rust-netlink/netlink-proto"
keywords = ["netlink", "linux", "async"]
Expand Down
10 changes: 6 additions & 4 deletions src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,13 @@ where
}
}

// Rust 1.82 has Option::is_none_or() which can simplify
// below checks but that version is released on 2024 Oct. 17 which
// is not available on old OS like Ubuntu 24.04 LTS, RHEL 9 yet.
if ready
|| self
.unsolicited_messages_tx
.as_ref()
.is_none_or(|x| x.is_closed())
|| self.unsolicited_messages_tx.as_ref().is_none()
|| self.unsolicited_messages_tx.as_ref().map(|x| x.is_closed())
== Some(true)
{
// The channel is closed so we can drop the sender.
let _ = self.unsolicited_messages_tx.take();
Expand Down
Loading