Update to version 0.7 of winter-math #74
ci.yml
on: push
Dependency Security Audit
23s
Accept
0s
Annotations
31 warnings
Dependency Security Audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Dependency Security Audit
2 warnings found!
|
Dependency Security Audit
Unknown warning kind unsound found, please, file a bug
|
Dependency Security Audit
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/
|
Dependency Security Audit
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/
|
Dependency Security Audit
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/
|
Dependency Security Audit
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/
|
use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified:
src/stark.rs#L57
warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
--> src/stark.rs:57:5
|
57 | async fn prove(
| ^^^^^
|
= note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
= note: `#[warn(async_fn_in_trait)]` on by default
help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
|
57 ~ fn prove(
58 | &self,
59 | options: ProofOptions,
60 | witness: Self::Witness,
61 ~ ) -> impl std::future::Future<Output = Result<Proof<Self>, ProvingError>> + Send {async {
62 | default_prove(self, options, witness)
63 ~ } }
|
|
use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified:
src/stark.rs#L57
warning: use of `async fn` in public traits is discouraged as auto trait bounds cannot be specified
--> src/stark.rs:57:5
|
57 | async fn prove(
| ^^^^^
|
= note: you can suppress this lint if you plan to use the trait only in your own code, or do not care about auto traits like `Send` on the `Future`
= note: `#[warn(async_fn_in_trait)]` on by default
help: you can alternatively desugar to a normal `fn` that returns `impl Future` and add any desired bounds such as `Send`, but these cannot be relaxed without a breaking API change
|
57 ~ fn prove(
58 | &self,
59 | options: ProofOptions,
60 | witness: Self::Witness,
61 ~ ) -> impl std::future::Future<Output = Result<Proof<Self>, ProvingError>> + Send {async {
62 | default_prove(self, options, witness)
63 ~ } }
|
|
item in documentation is missing backticks:
src/prover.rs#L183
warning: item in documentation is missing backticks
--> src/prover.rs:183:28
|
183 | /// Bit reverses the first ce_domain_size many values of the matrix columns.
| ^^^^^^^^^^^^^^
|
= 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/lib.rs:1:22
|
1 | #![warn(clippy::all, clippy::pedantic, clippy::cargo, clippy::nursery)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
|
183 | /// Bit reverses the first `ce_domain_size` many values of the matrix columns.
| ~~~~~~~~~~~~~~~~
|
item in documentation is missing backticks:
src/prover.rs#L183
warning: item in documentation is missing backticks
--> src/prover.rs:183:28
|
183 | /// Bit reverses the first ce_domain_size many values of the matrix columns.
| ^^^^^^^^^^^^^^
|
= 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/lib.rs:1:22
|
1 | #![warn(clippy::all, clippy::pedantic, clippy::cargo, clippy::nursery)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
|
183 | /// Bit reverses the first `ce_domain_size` many values of the matrix columns.
| ~~~~~~~~~~~~~~~~
|
the feature `return_position_impl_trait_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable:
src/lib.rs#L28
warning: the feature `return_position_impl_trait_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable
--> src/lib.rs:28:5
|
28 | return_position_impl_trait_in_trait,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
the feature `async_fn_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable:
src/lib.rs#L23
warning: the feature `async_fn_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable
--> src/lib.rs:23:5
|
23 | async_fn_in_trait,
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
|
the feature `return_position_impl_trait_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable:
src/lib.rs#L28
warning: the feature `return_position_impl_trait_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable
--> src/lib.rs:28:5
|
28 | return_position_impl_trait_in_trait,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
the feature `async_fn_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable:
src/lib.rs#L23
warning: the feature `async_fn_in_trait` has been stable since 1.75.0-nightly and no longer requires an attribute to enable
--> src/lib.rs:23:5
|
23 | async_fn_in_trait,
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
|
Lint
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Lint
The `save-state` 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/
|
Lint
The `save-state` 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/
|
Lint
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/
|
Lint
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/
|
Lint
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/
|
Lint
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/
|
Lint
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/
|
Test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Test
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/
|
Test
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/
|
Test
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/
|
Test
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/
|
Test
The `save-state` 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/
|
Test
The `save-state` 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/
|
Test
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/
|