Skip to content

Fix SVF frequency analysis #23

Fix SVF frequency analysis

Fix SVF frequency analysis #23

Triggered via pull request September 30, 2024 15:13
Status Success
Total duration 6m 34s
Artifacts

clippy.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

27 warnings
clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions/cache@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes: crates/valib-core/src/lib.rs#L6
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes --> crates/valib-core/src/lib.rs:6:12 | 6 | #![feature(generic_const_exprs)] | ^^^^^^^^^^^^^^^^^^^ | = note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information = note: `#[warn(incomplete_features)]` on by default
the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes: crates/valib-core/src/lib.rs#L6
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes --> crates/valib-core/src/lib.rs:6:12 | 6 | #![feature(generic_const_exprs)] | ^^^^^^^^^^^^^^^^^^^ | = note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information = note: `#[warn(incomplete_features)]` on by default
unexpected `cfg` condition value: `math-polynom`: crates/valib-core/src/math/mod.rs#L14
warning: unexpected `cfg` condition value: `math-polynom` --> crates/valib-core/src/math/mod.rs:14:7 | 14 | #[cfg(feature = "math-polynom")] | ^^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `test-utils` = help: consider adding `math-polynom` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
unexpected `cfg` condition value: `math-polynom`: crates/valib-core/src/math/mod.rs#L14
warning: unexpected `cfg` condition value: `math-polynom` --> crates/valib-core/src/math/mod.rs:14:7 | 14 | #[cfg(feature = "math-polynom")] | ^^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `test-utils` = help: consider adding `math-polynom` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
unexpected `cfg` condition name: `never`: crates/valib-filters/src/biquad/mod.rs#L22
warning: unexpected `cfg` condition name: `never` --> crates/valib-filters/src/biquad/mod.rs:22:7 | 22 | #[cfg(never)] | ^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` = help: consider using a Cargo feature instead = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(never)'] } = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(never)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
unexpected `cfg` condition name: `never`: crates/valib-filters/src/biquad/mod.rs#L22
warning: unexpected `cfg` condition name: `never` --> crates/valib-filters/src/biquad/mod.rs:22:7 | 22 | #[cfg(never)] | ^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` = help: consider using a Cargo feature instead = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(never)'] } = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(never)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes: crates/valib-fundsp/src/lib.rs#L2
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes --> crates/valib-fundsp/src/lib.rs:2:12 | 2 | #![feature(generic_const_exprs)] | ^^^^^^^^^^^^^^^^^^^ | = note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information = note: `#[warn(incomplete_features)]` on by default
the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes: crates/valib-fundsp/src/lib.rs#L2
warning: the feature `generic_const_exprs` is incomplete and may not be safe to use and/or cause compiler crashes --> crates/valib-fundsp/src/lib.rs:2:12 | 2 | #![feature(generic_const_exprs)] | ^^^^^^^^^^^^^^^^^^^ | = note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information = note: `#[warn(incomplete_features)]` on by default
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`
clippy
`/home/runner/work/valib/valib/.cargo/config` is deprecated in favor of `config.toml`