Remove SSP linking flag from Windows builds. #622
Annotations
5 warnings
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, FrancisRussell/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy:
src/bin/zoogcomment.rs#L269
warning: this function has too many lines (127/100)
--> src/bin/zoogcomment.rs:269:1
|
269 | / fn main_impl() -> Result<(), AppError> {
270 | | let interrupt_checker = CtrlCChecker::new()?;
271 | | let cli = Cli::parse_from(wild::args_os());
272 | | let operation_mode = match (cli.list, cli.modify, cli.replace) {
... |
410 | | Ok(())
411 | | }
| |_^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
note: the lint level is defined here
--> src/bin/zoogcomment.rs:1:9
|
1 | #![warn(clippy::pedantic)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::too_many_lines)]` implied by `#[warn(clippy::pedantic)]`
|
Clippy:
src/bin/opusgain.rs#L173
warning: item in documentation is missing backticks
--> src/bin/opusgain.rs:173:9
|
173 | /// ReplayGain (normalize to -18 LUFS)
| ^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
--> src/bin/opusgain.rs:1:9
|
1 | #![warn(clippy::pedantic)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
|
173 | /// `ReplayGain` (normalize to -18 LUFS)
| ~~~~~~~~~~~~
|
Clippy
warning: 1 warning emitted
|
Clippy
warning: 1 warning emitted
|
Loading