Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: remove loom workflow. #53

Merged
merged 1 commit into from
Oct 24, 2024

ci: remove `loom` workflow.

d541c22
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

ci: remove loom workflow. #53

ci: remove `loom` workflow.
d541c22
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Oct 24, 2024 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.84.0-nightly (4f2f477fd 2024-10-23)
  • cargo 1.84.0-nightly (cf53cc54b 2024-10-18)
  • clippy 0.1.84 (4f2f477fde 2024-10-23)

Annotations

Check warning on line 26 in ashen/src/asset/pack_file.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

docs for function returning `Result` missing `# Errors` section

warning: docs for function returning `Result` missing `# Errors` section
  --> ashen/src/asset/pack_file.rs:26:5
   |
26 |     pub fn new(input: &[u8]) -> Result<Self> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc
   = note: `#[warn(clippy::missing_errors_doc)]` implied by `#[warn(clippy::pedantic)]`

Check warning on line 18 in ashen/src/asset/color_map.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

docs for function which may panic missing `# Panics` section

warning: docs for function which may panic missing `# Panics` section
  --> ashen/src/asset/color_map.rs:18:5
   |
18 |     pub fn from_12_bit(color: u16) -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: first possible panic found here
  --> ashen/src/asset/color_map.rs:20:9
   |
20 |         assert!(color <= 0xFFF, "12 bit color is smaller than 0xFFF");
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc
note: the lint level is defined here
  --> ashen/src/lib.rs:1:9
   |
1  | #![warn(clippy::pedantic)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[warn(clippy::missing_panics_doc)]` implied by `#[warn(clippy::pedantic)]`