Skip to content

Feat/stone ffi

Feat/stone ffi #1492

Triggered via pull request January 6, 2025 15:05
@tarkahtarkah
synchronize #364
feat/stone-ffi
Status Success
Total duration 4m 35s
Artifacts

ci.yaml

on: pull_request
Build & Test Project
4m 22s
Build & Test Project
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
[clippy] crates/stone/src/read/mod.rs#L132: crates/stone/src/read/mod.rs#L132
warning: the following explicit lifetimes could be elided: 'a --> crates/stone/src/read/mod.rs:132:6 | 132 | impl<'a, R: Read> Read for StonePayloadContentReader<'a, R> { | ^^ ^^ | = 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 | 132 - impl<'a, R: Read> Read for StonePayloadContentReader<'a, R> { 132 + impl<R: Read> Read for StonePayloadContentReader<'_, R> { |
[clippy] libstone/src/lib.rs#L66: libstone/src/lib.rs#L66
warning: the following explicit lifetimes could be elided: 'a --> libstone/src/lib.rs:66:6 | 66 | impl<'a> Read for StoneReadImpl<'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 | 66 - impl<'a> Read for StoneReadImpl<'a> { 66 + impl Read for StoneReadImpl<'_> { |
[clippy] libstone/src/lib.rs#L88: libstone/src/lib.rs#L88
warning: the following explicit lifetimes could be elided: 'a --> libstone/src/lib.rs:88:6 | 88 | impl<'a> Seek for StoneReadImpl<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 88 - impl<'a> Seek for StoneReadImpl<'a> { 88 + impl Seek for StoneReadImpl<'_> { |
Build & Test Project
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636