Update bit-vec requirement from 0.6.2 to 0.7.0 #644
Annotations
2 errors and 11 warnings
lint
reviewdog: Too many results (annotations) in diff.
You may miss some annotations due to GitHub limitation for annotation created by logging command.
Please check GitHub Actions log console to see all results.
Limitation:
- 10 warning annotations and 10 error annotations per step
- 50 annotations per job (sum of annotations from all the steps)
- 50 annotations per run (separate from the job annotations, these annotations aren't created by users)
Source: https://github.com/orgs/community/discussions/26680#discussioncomment-3252835
|
lint
reviewdog exited with status code: 1
|
lint
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: giraffate/clippy-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
lint:
src/dds/participant.rs#L1154
[clippy] reported by reviewdog 🐶
warning: unexpected `cfg` condition name: `security`
--> src/dds/participant.rs:1154:12
|
1154 | cfg!(security)
| ^^^^^^^^ help: found config with similar value: `feature = "security"`
|
= help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows`
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(security)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(security)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
Raw Output:
src/dds/participant.rs:1154:12:w:warning: unexpected `cfg` condition name: `security`
--> src/dds/participant.rs:1154:12
|
1154 | cfg!(security)
| ^^^^^^^^ help: found config with similar value: `feature = "security"`
|
= help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows`
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(security)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(security)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
__END__
|
lint:
src/dds/statusevents.rs#L528
[clippy] reported by reviewdog 🐶
warning: struct `QosPolicyCount` is never constructed
--> src/dds/statusevents.rs:528:12
|
528 | pub struct QosPolicyCount {
| ^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Raw Output:
src/dds/statusevents.rs:528:12:w:warning: struct `QosPolicyCount` is never constructed
--> src/dds/statusevents.rs:528:12
|
528 | pub struct QosPolicyCount {
| ^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
__END__
|
lint:
src/lib.rs#L40
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:40:5
|
40 | //! structures, containing multiple *instances* (map entries), identified by a
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
= note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
|
40 | //! structures, containing multiple *instances* (map entries), identified by a
| ++
Raw Output:
src/lib.rs:40:5:w:warning: doc list item missing indentation
--> src/lib.rs:40:5
|
40 | //! structures, containing multiple *instances* (map entries), identified by a
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
= note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
|
40 | //! structures, containing multiple *instances* (map entries), identified by a
| ++
__END__
|
lint:
src/lib.rs#L41
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:41:5
|
41 | //! *key*. The key must be something that can be extracted from the data
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
41 | //! *key*. The key must be something that can be extracted from the data
| ++
Raw Output:
src/lib.rs:41:5:w:warning: doc list item missing indentation
--> src/lib.rs:41:5
|
41 | //! *key*. The key must be something that can be extracted from the data
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
41 | //! *key*. The key must be something that can be extracted from the data
| ++
__END__
|
lint:
src/lib.rs#L42
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:42:5
|
42 | //! samples. Instances can be created (published) and deleted (disposed).
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
42 | //! samples. Instances can be created (published) and deleted (disposed).
| ++
Raw Output:
src/lib.rs:42:5:w:warning: doc list item missing indentation
--> src/lib.rs:42:5
|
42 | //! samples. Instances can be created (published) and deleted (disposed).
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
42 | //! samples. Instances can be created (published) and deleted (disposed).
| ++
__END__
|
lint:
src/lib.rs#L46
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:46:5
|
46 | //! because with_key communication must be able to access keys from data
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
46 | //! because with_key communication must be able to access keys from data
| ++
Raw Output:
src/lib.rs:46:5:w:warning: doc list item missing indentation
--> src/lib.rs:46:5
|
46 | //! because with_key communication must be able to access keys from data
| ^^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
46 | //! because with_key communication must be able to access keys from data
| ++
__END__
|
lint:
src/lib.rs#L47
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:47:5
|
47 | //! samples, so it is required in type signatures. Such requirement makes no
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
47 | //! samples, so it is required in type signatures. Such requirement makes no
| ++++
Raw Output:
src/lib.rs:47:5:w:warning: doc list item missing indentation
--> src/lib.rs:47:5
|
47 | //! samples, so it is required in type signatures. Such requirement makes no
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
47 | //! samples, so it is required in type signatures. Such requirement makes no
| ++++
__END__
|
lint:
src/lib.rs#L48
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:48:5
|
48 | //! sense for no_key communication, so signature must be different.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
48 | //! sense for no_key communication, so signature must be different.
| ++++
Raw Output:
src/lib.rs:48:5:w:warning: doc list item missing indentation
--> src/lib.rs:48:5
|
48 | //! sense for no_key communication, so signature must be different.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
48 | //! sense for no_key communication, so signature must be different.
| ++++
__END__
|
lint:
src/lib.rs#L54
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:54:5
|
54 | //! In order for RustDDS to do this, the payload data must be [Serde](https://serde.rs/)
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
54 | //! In order for RustDDS to do this, the payload data must be [Serde](https://serde.rs/)
| ++
Raw Output:
src/lib.rs:54:5:w:warning: doc list item missing indentation
--> src/lib.rs:54:5
|
54 | //! In order for RustDDS to do this, the payload data must be [Serde](https://serde.rs/)
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
54 | //! In order for RustDDS to do this, the payload data must be [Serde](https://serde.rs/)
| ++
__END__
|
lint:
src/lib.rs#L55
[clippy] reported by reviewdog 🐶
warning: doc list item missing indentation
--> src/lib.rs:55:5
|
55 | //! serializable/deserializable.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
55 | //! serializable/deserializable.
| ++
Raw Output:
src/lib.rs:55:5:w:warning: doc list item missing indentation
--> src/lib.rs:55:5
|
55 | //! serializable/deserializable.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
help: indent this line
|
55 | //! serializable/deserializable.
| ++
__END__
|