Skip to content

feat: add basic loggers #24

feat: add basic loggers

feat: add basic loggers #24

Triggered via push November 30, 2024 15:03
Status Success
Total duration 3m 27s
Artifacts

docker.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

5 warnings
the following explicit lifetimes could be elided: 'a: capybara-core/src/protocol/http2/hpack.rs#L187
warning: the following explicit lifetimes could be elided: 'a --> capybara-core/src/protocol/http2/hpack.rs:187:6 | 187 | impl<'a> Iterator for HeaderFieldIter<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 187 - impl<'a> Iterator for HeaderFieldIter<'a> { 187 + impl Iterator for HeaderFieldIter<'_> { |
the following explicit lifetimes could be elided: 'a: capybara-core/src/protocol/http2/hpack.rs#L148
warning: the following explicit lifetimes could be elided: 'a --> capybara-core/src/protocol/http2/hpack.rs:148:6 | 148 | impl<'a> Into<Cachestr> for HStr<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 148 - impl<'a> Into<Cachestr> for HStr<'a> { 148 + impl Into<Cachestr> for HStr<'_> { |
the following explicit lifetimes could be elided: 'a: capybara-core/src/protocol/http2/frame.rs#L291
warning: the following explicit lifetimes could be elided: 'a --> capybara-core/src/protocol/http2/frame.rs:291:6 | 291 | impl<'a> Iterator for SettingIter<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 291 - impl<'a> Iterator for SettingIter<'a> { 291 + impl Iterator for SettingIter<'_> { |
the following explicit lifetimes could be elided: 'a: capybara-core/src/protocol/http/frame/query.rs#L269
warning: the following explicit lifetimes could be elided: 'a --> capybara-core/src/protocol/http/frame/query.rs:269:6 | 269 | impl<'a> AsRef<[u8]> for Query<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 269 - impl<'a> AsRef<[u8]> for Query<'a> { 269 + impl AsRef<[u8]> for Query<'_> { |
the following explicit lifetimes could be elided: 'a: capybara-core/src/protocol/http/frame/query.rs#L263
warning: the following explicit lifetimes could be elided: 'a --> capybara-core/src/protocol/http/frame/query.rs:263:6 | 263 | impl<'a> AsRef<str> for Query<'a> { | ^^ ^^ | = 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 | 263 - impl<'a> AsRef<str> for Query<'a> { 263 + impl AsRef<str> for Query<'_> { |