fix(deps): update rust crate thiserror to v2 #89
clippy
4 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 4 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.82.0 (f6e511eec 2024-10-15)
- cargo 1.82.0 (8f40fc59f 2024-08-21)
- clippy 0.1.82 (f6e511e 2024-10-15)
Annotations
Check warning on line 124 in src/bin/main.rs
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
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
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
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