Skip to content

upgrade compatible deps to fix a security vuln #37

upgrade compatible deps to fix a security vuln

upgrade compatible deps to fix a security vuln #37

Triggered via push December 10, 2024 21:56
Status Success
Total duration 32s
Artifacts

clippy.yml

on: push
clippy_check
23s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
the following explicit lifetimes could be elided: 'input: src/ast.rs#L248
warning: the following explicit lifetimes could be elided: 'input --> src/ast.rs:248:6 | 248 | impl<'input> AnnotatedExpr<'input> { | ^^^^^^ ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 248 - impl<'input> AnnotatedExpr<'input> { 248 + impl AnnotatedExpr<'_> { |
the following explicit lifetimes could be elided: 'input: src/ast.rs#L211
warning: the following explicit lifetimes could be elided: 'input --> src/ast.rs:211:6 | 211 | impl<'input> Expr<'input> { | ^^^^^^ ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 211 - impl<'input> Expr<'input> { 211 + impl Expr<'_> { |
the following explicit lifetimes could be elided: 'input: src/ast.rs#L170
warning: the following explicit lifetimes could be elided: 'input --> src/ast.rs:170:6 | 170 | impl<'input> Term<'input> { | ^^^^^^ ^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 170 - impl<'input> Term<'input> { 170 + impl Term<'_> { |
clippy_check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636