Skip to content

chore(deps): bump thiserror from 1.0.56 to 2.0.0 #25

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

Closed
wants to merge 1 commit into from

chore(deps): bump thiserror from 1.0.56 to 2.0.0

e749e30
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

chore(deps): bump thiserror from 1.0.56 to 2.0.0 #25

chore(deps): bump thiserror from 1.0.56 to 2.0.0
e749e30
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Nov 6, 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.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

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