Skip to content

chore(deps): bump time from 0.3.40 to 0.3.47 #549

chore(deps): bump time from 0.3.40 to 0.3.47

chore(deps): bump time from 0.3.40 to 0.3.47 #549

Triggered via pull request February 5, 2026 18:38
Status Failure
Total duration 50s
Artifacts

ci.yml

on: pull_request
cargo check
16s
cargo check
cargo fmt
12s
cargo fmt
cargo test
13s
cargo test
cargo clippy
16s
cargo clippy
minimal direct dependencies
42s
minimal direct dependencies
cargo clippy latest
36s
cargo clippy latest
allgreen
2s
allgreen
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 10 warnings
cargo test
Process completed with exit code 101.
cargo clippy
Error: Clippy has exited with exit code 101
cargo check
Process completed with exit code 101.
allgreen
Process completed with exit code 1.
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/job.rs#L321
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/job.rs:321:22 | 321 | pub fn variables(&self) -> impl Iterator<Item = Variable> { | ^^^^^ ^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 321 | pub fn variables(&self) -> impl Iterator<Item = Variable<'_>> { | ++++
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/job.rs#L316
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/job.rs:316:21 | 316 | pub fn variable(&self, key: &str) -> Option<Variable> { | ^^^^^ ^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 316 | pub fn variable(&self, key: &str) -> Option<Variable<'_>> { | ++++
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/artifact.rs#L65
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/artifact.rs:65:21 | 65 | pub fn by_index(&mut self, i: usize) -> Option<ArtifactFile> { | ^^^^^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 65 | pub fn by_index(&mut self, i: usize) -> Option<ArtifactFile<'_>> { | ++++
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/artifact.rs#L60
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/artifact.rs:60:17 | 60 | pub fn file(&mut self, name: &str) -> Option<ArtifactFile> { | ^^^^^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: use `'_` for type paths | 60 | pub fn file(&mut self, name: &str) -> Option<ArtifactFile<'_>> { | ++++
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/artifact.rs#L65
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/artifact.rs:65:21 | 65 | pub fn by_index(&mut self, i: usize) -> Option<ArtifactFile> { | ^^^^^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 65 | pub fn by_index(&mut self, i: usize) -> Option<ArtifactFile<'_>> { | ++++
hiding a lifetime that's elided elsewhere is confusing: gitlab-runner/src/artifact.rs#L60
warning: hiding a lifetime that's elided elsewhere is confusing --> gitlab-runner/src/artifact.rs:60:17 | 60 | pub fn file(&mut self, name: &str) -> Option<ArtifactFile> { | ^^^^^^^^^ ^^^^^^^^^^^^ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: use `'_` for type paths | 60 | pub fn file(&mut self, name: &str) -> Option<ArtifactFile<'_>> { | ++++
this `impl` can be derived: gitlab-runner/src/client.rs#L190
warning: this `impl` can be derived --> gitlab-runner/src/client.rs:190:1 | 190 | / impl Default for ArtifactFormat { 191 | | fn default() -> Self { 192 | | Self::Zip 193 | | } 194 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#derivable_impls help: replace the manual implementation with a derive attribute and mark the default variant | 184 + #[derive(Default)] 185 | pub enum ArtifactFormat { 186 ~ #[default] 187 ~ Zip, |
this `impl` can be derived: gitlab-runner/src/client.rs#L176
warning: this `impl` can be derived --> gitlab-runner/src/client.rs:176:1 | 176 | / impl Default for ArtifactWhen { 177 | | fn default() -> Self { 178 | | Self::OnSuccess 179 | | } 180 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default help: replace the manual implementation with a derive attribute and mark the default variant | 170 + #[derive(Default)] 171 | pub enum ArtifactWhen { 172 | Always, 173 | OnFailure, 174 ~ #[default] 175 ~ OnSuccess, |
this `impl` can be derived: gitlab-runner/src/client.rs#L190
warning: this `impl` can be derived --> gitlab-runner/src/client.rs:190:1 | 190 | / impl Default for ArtifactFormat { 191 | | fn default() -> Self { 192 | | Self::Zip 193 | | } 194 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#derivable_impls help: replace the manual implementation with a derive attribute and mark the default variant | 184 + #[derive(Default)] 185 | pub enum ArtifactFormat { 186 ~ #[default] 187 ~ Zip, |
this `impl` can be derived: gitlab-runner/src/client.rs#L176
warning: this `impl` can be derived --> gitlab-runner/src/client.rs:176:1 | 176 | / impl Default for ArtifactWhen { 177 | | fn default() -> Self { 178 | | Self::OnSuccess 179 | | } 180 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default help: replace the manual implementation with a derive attribute and mark the default variant | 170 + #[derive(Default)] 171 | pub enum ArtifactWhen { 172 | Always, 173 | OnFailure, 174 ~ #[default] 175 ~ OnSuccess, |