Skip to content

chore(deps): update codecov/codecov-action action to v5

Sign in for the full log view
GitHub Actions / clippy succeeded Nov 14, 2024 in 0s

clippy

4 warnings

Details

Results

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

Versions

  • rustc 1.83.0-beta.5 (eb6e3fa1a 2024-11-08)
  • cargo 1.83.0-beta.5 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (eb6e3fa 2024-11-08)

Annotations

Check warning on line 124 in src/bin/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

never type fallback affects this call to an `unsafe` method

warning: never type fallback affects this call to an `unsafe` method
   --> src/bin/main.rs:121:33
    |
121 | / ...                   value
122 | | ...                       .parse()
123 | | ...                       .map_err(|_e| err!(parse; "Heghit", a))
124 | | ...                       .unwrap_unchecked()
    | |_____________________________________________^
    |
    = warning: this will change its meaning in a future release!
    = note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
    = help: specify the type explicitly

Check warning on line 116 in src/bin/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

never type fallback affects this call to an `unsafe` method

warning: never type fallback affects this call to an `unsafe` method
   --> src/bin/main.rs:113:33
    |
113 | / ...                   value
114 | | ...                       .parse()
115 | | ...                       .map_err(|_e| err!(parse; "Width", a))
116 | | ...                       .unwrap_unchecked()
    | |_____________________________________________^
    |
    = warning: this will change its meaning in a future release!
    = note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
    = help: specify the type explicitly

Check warning on line 108 in src/bin/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

never type fallback affects this call to an `unsafe` method

warning: never type fallback affects this call to an `unsafe` method
   --> src/bin/main.rs:105:33
    |
105 | / ...                   value
106 | | ...                       .parse()
107 | | ...                       .map_err(|_e| err!(parse; "Y coordinates", a))
108 | | ...                       .unwrap_unchecked()
    | |_____________________________________________^
    |
    = warning: this will change its meaning in a future release!
    = note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
    = help: specify the type explicitly

Check warning on line 100 in src/bin/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

never type fallback affects this call to an `unsafe` method

warning: never type fallback affects this call to an `unsafe` method
   --> src/bin/main.rs:97:33
    |
97  | / ...                   value
98  | | ...                       .parse()
99  | | ...                       .map_err(|_e| err!(parse; "X coordinates", a))
100 | | ...                       .unwrap_unchecked()
    | |_____________________________________________^
    |
    = warning: this will change its meaning in a future release!
    = note: for more information, see issue #123748 <https://github.com/rust-lang/rust/issues/123748>
    = help: specify the type explicitly
    = note: `#[warn(never_type_fallback_flowing_into_unsafe)]` on by default