Skip to content

feat: new c compiler: zig cc #48

feat: new c compiler: zig cc

feat: new c compiler: zig cc #48

Triggered via push July 18, 2024 00:17
Status Success
Total duration 17s
Artifacts

web.yml

on: push
Build and deploy site and docs
7s
Build and deploy site and docs
Fit to window
Zoom out
Zoom in

Annotations

112 errors and 1 warning
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_^ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_^ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_^ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_^ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
empty line after outer attribute: src/report.rs#L222
error: empty line after outer attribute --> src/report.rs:222:1 | 222 | / #[allow(dead_code)] 223 | | | |_^ 224 | pub enum TestRunMode { | -------------------- the attribute applies to this enum | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr = note: `-D clippy::empty-line-after-outer-attr` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_outer_attr)]` = help: if the empty line is unintentional remove it
the following explicit lifetimes could be elided: 'a: src/log.rs#L414
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:414:6 | 414 | impl<'a> tracing::field::Visit for MapVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 414 - impl<'a> tracing::field::Visit for MapVisitor<'a> { 414 + impl tracing::field::Visit for MapVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/log.rs#L375
error: the following explicit lifetimes could be elided: 'a --> src/log.rs:375:6 | 375 | impl<'a> tracing::field::Visit for SpanVisitor<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 375 - impl<'a> tracing::field::Visit for SpanVisitor<'a> { 375 + impl tracing::field::Visit for SpanVisitor<'_> { |
the following explicit lifetimes could be elided: 'a: src/harness/vals.rs#L256
error: the following explicit lifetimes could be elided: 'a --> src/harness/vals.rs:256:6 | 256 | impl<'a> std::ops::Deref for ValueRef<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 256 - impl<'a> std::ops::Deref for ValueRef<'a> { 256 + impl std::ops::Deref for ValueRef<'_> { |
the following explicit lifetimes could be elided: 'a: src/fivemat.rs#L80
error: the following explicit lifetimes could be elided: 'a --> src/fivemat.rs:80:6 | 80 | impl<'a> std::fmt::Write for Fivemat<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 80 - impl<'a> std::fmt::Write for Fivemat<'a> { 80 + impl std::fmt::Write for Fivemat<'_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L35
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:35:10 | 35 | impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 35 - impl<'a, 'b> std::ops::DerefMut for FivematIndent<'a, 'b> { 35 + impl<'a> std::ops::DerefMut for FivematIndent<'a, '_> { |
the following explicit lifetimes could be elided: 'b: src/fivemat.rs#L29
error: the following explicit lifetimes could be elided: 'b --> src/fivemat.rs:29:10 | 29 | impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-D clippy::needless-lifetimes` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 29 - impl<'a, 'b> std::ops::Deref for FivematIndent<'a, 'b> { 29 + impl<'a> std::ops::Deref for FivematIndent<'a, '_> { |
Build and deploy site and docs
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, JamesIves/[email protected]. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/