You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current code has `Option::is_none_or()` which released 2024 Oct 17,
considering old compiler environment like Ubuntu 24.04 LTS, RHEL 9,
replaced it to:
```rust
self.unsolicited_messages_tx.as_ref().is_none()
|| self.unsolicited_messages_tx.as_ref().map(|x| x.is_closed())
```
Set minimum supported Rust version to 1.75 to `Cargo.toml` and enabled
CI test for it.
Signed-off-by: Gris Ge <[email protected]>
0 commit comments