-
Notifications
You must be signed in to change notification settings - Fork 18
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
Bump MSRV #101
Bump MSRV #101
Conversation
Pull Request Test Coverage Report for Build 8282469423Details
💛 - Coveralls |
@haraldh Thanks. What's with the CI? 🤔 |
Not sure where these checks are coming from:
|
Ah, @haraldh you need to reselect the required workflows from the settings. |
Please gpg sign your commits :-) |
Signed-off-by: Zeeshan Ali Khan <zeenix@gmail.com>
Fixes a clippy warning: ```rust warning: redundant guard --> varlink/src/server.rs:593:40 | 593 | ... Ok(buf) if buf.is_empty() => break, | ^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `#[warn(clippy::redundant_guards)]` on by default help: try | 593 - Ok(buf) if buf.is_empty() => break, 593 + Ok([]) => break, | warning: `varlink` (lib test) generated 1 warning ``` Signed-off-by: Zeeshan Ali Khan <zeenix@gmail.com>
Fixes clippy warning: ```rust warning: useless use of `vec!` --> varlink-cli/src/watchclose_epoll.rs:157:21 | 157 | let mut v = vec![Event { events: 0, data: 0 }, Event { events: 0, data: 1 }]; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[Event { events: 0, data: 0 }, Event { events: 0, data: 1 }]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec = note: `#[warn(clippy::useless_vec)]` on by default ``` Signed-off-by: Zeeshan Ali Khan <zeenix@gmail.com>
Head branch was pushed to by a user without write access
Ughhh, ok. |
or, let me remove this hurdle, before development stalls |
For this PR, I already signed the commits. Can you please approve again for the ci? |
No description provided.