Implement Meson parity #1204
Annotations
2 errors and 1 warning
src/install.rs#L298
error: the following explicit lifetimes could be elided: 'a
--> src/install.rs:298:16
|
298 | fn get_path_or<'a>(args: &'a ArgMatches, id: &str, f: impl FnOnce() -> PathBuf) -> PathBuf {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
298 - fn get_path_or<'a>(args: &'a ArgMatches, id: &str, f: impl FnOnce() -> PathBuf) -> PathBuf {
298 + fn get_path_or(args: &ArgMatches, id: &str, f: impl FnOnce() -> PathBuf) -> PathBuf {
|
|
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs-plus/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The logs for this run have expired and are no longer available.
Loading