Skip to content

Add consolidation req to types #778

Add consolidation req to types

Add consolidation req to types #778

GitHub Actions / clippy succeeded Oct 2, 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.81.0 (eeb90cda1 2024-09-04)
  • cargo 1.81.0 (2dbb1af80 2024-08-20)
  • clippy 0.1.81 (eeb90cd 2024-09-04)

Annotations

Check warning on line 5 in build.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the borrowed expression implements the required traits

warning: the borrowed expression implements the required traits
 --> build.rs:5:18
  |
5 |     config.bytes(&["."]);
  |                  ^^^^^^ help: change this to: `["."]`
  |
  = 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

Check warning on line 44 in build.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unexpected `cfg` condition value: `execution`

warning: unexpected `cfg` condition value: `execution`
  --> build.rs:44:13
   |
44 |     if cfg!(feature = "execution") {
   |             ^^^^^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `remotekv`, `sentinel`, `sentry`, `snapshotsync`, `txpool`, and `web3`
   = help: consider adding `execution` as a feature in `Cargo.toml`
   = 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