fix(abrasive): update to make it compile again (breaks scale param) #15
Annotations
5 errors and 27 warnings
clippy
could not compile `svfmixer` (lib test) due to 2 previous errors
|
clippy
could not compile `svfmixer` (lib) due to 2 previous errors
|
no function or associated item named `new` found for struct `valib::valib_filters::svf::Svf<valib::simd::AutoSimd<[f32; 2]>, dsp::Sinh>` in the current scope:
examples/svfmixer/src/dsp.rs#L54
error[E0599]: no function or associated item named `new` found for struct `valib::valib_filters::svf::Svf<valib::simd::AutoSimd<[f32; 2]>, dsp::Sinh>` in the current scope
--> examples/svfmixer/src/dsp.rs:54:30
|
54 | let filter = Filter::new(
| ^^^ function or associated item not found in `Svf<AutoSimd<[f32; 2]>, Sinh>`
|
= note: the function or associated item was found for
- `valib::valib_filters::svf::Svf<T>`
|
no function or associated item named `new` found for struct `valib::valib_filters::svf::Svf<valib::simd::AutoSimd<[f32; 2]>, dsp::Sinh>` in the current scope:
examples/svfmixer/src/dsp.rs#L54
error[E0599]: no function or associated item named `new` found for struct `valib::valib_filters::svf::Svf<valib::simd::AutoSimd<[f32; 2]>, dsp::Sinh>` in the current scope
--> examples/svfmixer/src/dsp.rs:54:30
|
54 | let filter = Filter::new(
| ^^^ function or associated item not found in `Svf<AutoSimd<[f32; 2]>, Sinh>`
|
= note: the function or associated item was found for
- `valib::valib_filters::svf::Svf<T>`
|
clippy
Clippy has exited with exit code 101
|
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
|
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
|
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
|
unexpected `cfg` condition name: `never`:
plugins/ts404/src/editor/mod.rs#L116
warning: unexpected `cfg` condition name: `never`
--> plugins/ts404/src/editor/mod.rs:116:7
|
116 | #[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`:
plugins/ts404/src/editor/mod.rs#L116
warning: unexpected `cfg` condition name: `never`
--> plugins/ts404/src/editor/mod.rs:116:7
|
116 | #[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
|
unused import: `valib::Scalar`:
plugins/abrasive/src/lib.rs#L8
warning: unused import: `valib::Scalar`
--> plugins/abrasive/src/lib.rs:8:5
|
8 | use valib::Scalar;
| ^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` 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`
|