Skip to content

Cleanup pending transfers and deliveries on link detach #398

Cleanup pending transfers and deliveries on link detach

Cleanup pending transfers and deliveries on link detach #398

GitHub Actions / clippy succeeded May 12, 2024 in 0s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.80.0-nightly (78a775127 2024-05-11)
  • cargo 1.80.0-nightly (4de0094ac 2024-05-09)
  • clippy 0.1.80 (78a7751 2024-05-11)

Annotations

Check warning on line 54 in codec/src/protocol/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unexpected `cfg` condition name: `tarpaulin_include`

warning: unexpected `cfg` condition name: `tarpaulin_include`
  --> codec/src/protocol/mod.rs:54:11
   |
54 | #[cfg(not(tarpaulin_include))]
   |           ^^^^^^^^^^^^^^^^^
   |
   = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration

Check warning on line 52 in codec/src/protocol/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unexpected `cfg` condition name: `tarpaulin_include`

warning: unexpected `cfg` condition name: `tarpaulin_include`
  --> codec/src/protocol/mod.rs:52:11
   |
52 | #[cfg(not(tarpaulin_include))]
   |           ^^^^^^^^^^^^^^^^^
   |
   = 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`, `windows`
   = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(tarpaulin_include)");` to the top of the `build.rs`
   = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
   = note: `#[warn(unexpected_cfgs)]` on by default