fix: import failing on large tables #70
ci.yml
on: push
clippy_check
1m 26s
rustfmt
7s
Matrix: build
Annotations
7 errors and 6 warnings
build (x86_64-unknown-linux-musl, ubuntu-latest, true)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
build (x86_64-apple-darwin, macos-latest, false)
The job was canceled because "x86_64-unknown-linux-musl" failed.
|
build (x86_64-apple-darwin, macos-latest, false)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
build (x86_64-unknown-linux-gnu, ubuntu-latest, true)
The job was canceled because "x86_64-unknown-linux-musl" failed.
|
build (x86_64-unknown-linux-gnu, ubuntu-latest, true)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
|
build (x86_64-pc-windows-gnu, windows-latest, false, .exe)
The job was canceled because "x86_64-unknown-linux-musl" failed.
|
build (x86_64-pc-windows-gnu, windows-latest, false, .exe)
A task was canceled.
|
rustfmt
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/
|
rustfmt
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/
|
rustfmt
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/
|
rustfmt
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/
|
the borrowed expression implements the required traits:
src/main.rs#L347
warning: the borrowed expression implements the required traits
--> src/main.rs:347:39
|
347 | let f = BufReader::new(File::open(&path).unwrap());
| ^^^^^ help: change this to: `path`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|
unneeded `return` statement:
src/main.rs#L38
warning: unneeded `return` statement
--> src/main.rs:38:9
|
38 | return "22".to_string();
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
38 - return "22".to_string();
38 + "22".to_string()
|
|