Skip to content

WIP: univariate KZG in evaluation form #299

WIP: univariate KZG in evaluation form

WIP: univariate KZG in evaluation form #299

Triggered via pull request January 20, 2024 08:39
@alxiongalxiong
opened #468
Status Failure
Total duration 25s
Artifacts

commit-title.yaml

on: pull_request_target
Fit to window
Zoom out
Zoom in

Annotations

4 errors
lint
Unknown release type "WIP" found in pull request title "WIP: univariate KZG in evaluation form". Please use one of these recognized types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert.
unused import: `eval_form::*`: primitives/src/pcs/univariate_kzg/mod.rs#L47
error: unused import: `eval_form::*` --> primitives/src/pcs/univariate_kzg/mod.rs:47:9 | 47 | pub use eval_form::*; | ^^^^^^^^^^^^
unused import: `slice`: primitives/src/pcs/univariate_kzg/eval_form.rs#L14
error: unused import: `slice` --> primitives/src/pcs/univariate_kzg/eval_form.rs:14:5 | 14 | slice, | ^^^^^ | note: the lint level is defined here --> primitives/src/lib.rs:11:9 | 11 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(unused_imports)]` implied by `#[deny(warnings)]`
cannot find type `Vec` in this scope: primitives/src/pcs/univariate_kzg/srs_eval_form.rs#L15
error[E0412]: cannot find type `Vec` in this scope --> primitives/src/pcs/univariate_kzg/srs_eval_form.rs:15:59 | 15 | #[derive(Debug, Clone, Eq, PartialEq, CanonicalSerialize, CanonicalDeserialize, Default)] | ^^^^^^^^^^^^^^^^^^^^ not found in this scope | = note: this error originates in the derive macro `CanonicalDeserialize` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider importing one of these items | 9 + use alloc::vec::Vec; | 9 + use ark_ff::vec::Vec; | 9 + use ark_std::vec::Vec; | 9 + use crate::pcs::Vec; | and 1 other candidate