Skip to content

Merge pull request #71 from Gankra/msrv #114

Merge pull request #71 from Gankra/msrv

Merge pull request #71 from Gankra/msrv #114

Triggered via push August 19, 2025 23:09
Status Success
Total duration 6m 19s
Artifacts

rust.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

34 warnings
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
usage of a legacy numeric method: src/lib.rs#L3780
warning: usage of a legacy numeric method --> src/lib.rs:3780:36 | 3780 | assert_eq!(v.len(), usize::max_value() - 1); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3780 - assert_eq!(v.len(), usize::max_value() - 1); 3780 + assert_eq!(v.len(), usize::MAX - 1); |
usage of a legacy numeric method: src/lib.rs#L3779
warning: usage of a legacy numeric method --> src/lib.rs:3779:58 | 3779 | for _ in v.drain(usize::max_value() - 1..=usize::max_value() - 1) {} | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3779 - for _ in v.drain(usize::max_value() - 1..=usize::max_value() - 1) {} 3779 + for _ in v.drain(usize::max_value() - 1..=usize::MAX - 1) {} |
usage of a legacy numeric method: src/lib.rs#L3779
warning: usage of a legacy numeric method --> src/lib.rs:3779:33 | 3779 | for _ in v.drain(usize::max_value() - 1..=usize::max_value() - 1) {} | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3779 - for _ in v.drain(usize::max_value() - 1..=usize::max_value() - 1) {} 3779 + for _ in v.drain(usize::MAX - 1..=usize::max_value() - 1) {} |
usage of a legacy numeric method: src/lib.rs#L3777
warning: usage of a legacy numeric method --> src/lib.rs:3777:30 | 3777 | v.set_len(usize::max_value()); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3777 - v.set_len(usize::max_value()); 3777 + v.set_len(usize::MAX); |
usage of a legacy numeric method: src/lib.rs#L3775
warning: usage of a legacy numeric method --> src/lib.rs:3775:57 | 3775 | let mut v = ThinVec::<()>::with_capacity(usize::max_value()); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3775 - let mut v = ThinVec::<()>::with_capacity(usize::max_value()); 3775 + let mut v = ThinVec::<()>::with_capacity(usize::MAX); |
usage of a legacy numeric method: src/lib.rs#L3773
warning: usage of a legacy numeric method --> src/lib.rs:3773:36 | 3773 | assert_eq!(v.len(), usize::max_value() - 1); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3773 - assert_eq!(v.len(), usize::max_value() - 1); 3773 + assert_eq!(v.len(), usize::MAX - 1); |
usage of a legacy numeric method: src/lib.rs#L3772
warning: usage of a legacy numeric method --> src/lib.rs:3772:33 | 3772 | for _ in v.drain(usize::max_value() - 1..) {} | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3772 - for _ in v.drain(usize::max_value() - 1..) {} 3772 + for _ in v.drain(usize::MAX - 1..) {} |
usage of a legacy numeric method: src/lib.rs#L3770
warning: usage of a legacy numeric method --> src/lib.rs:3770:30 | 3770 | v.set_len(usize::max_value()); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3770 - v.set_len(usize::max_value()); 3770 + v.set_len(usize::MAX); |
usage of a legacy numeric method: src/lib.rs#L3768
warning: usage of a legacy numeric method --> src/lib.rs:3768:57 | 3768 | let mut v = ThinVec::<()>::with_capacity(usize::max_value()); | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 3768 - let mut v = ThinVec::<()>::with_capacity(usize::max_value()); 3768 + let mut v = ThinVec::<()>::with_capacity(usize::MAX); |
importing legacy numeric constants: src/lib.rs#L3191
warning: importing legacy numeric constants --> src/lib.rs:3191:9 | 3191 | use core::usize; | ^^^^^^^^^^^ | = help: remove this import = note: then `usize::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default
replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take`: src/lib.rs#L2337
warning: replacing a value of type `T` with `T::default()` is better expressed using `std::mem::take` --> src/lib.rs:2337:31 | 2337 | let mut vec = mem::replace(&mut this.vec, ThinVec::new()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::mem::take(&mut this.vec)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mem_replace_with_default = note: `#[warn(clippy::mem_replace_with_default)]` on by default
field `0` is never read: src/lib.rs#L3564
warning: field `0` is never read --> src/lib.rs:3564:21 | 3564 | struct Elem(i32); | ---- ^^^ | | | field in this struct | = help: consider removing this field
field `0` is never read: src/lib.rs#L2837
warning: field `0` is never read --> src/lib.rs:2837:24 | 2837 | struct Align16(u8); | ------- ^^ | | | field in this struct | = help: consider removing this field = note: `#[warn(dead_code)]` on by default
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
Failed to save: <h2>Our services aren't available right now</h2><p>We're working to restore all services as soon as possible. Please check back soon.</p>0XASlaAAAAADymo3Sh4WXRoRi+79wnRZHQkwyQUEyMDMwMTA4MDIzAEVkZ2U=
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
Failed to restore: Cache service responded with 400
docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
msrv
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
msrv
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
msrv
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
msrv
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/