Skip to content

Merge upstream changes from informalsystems/hermes #45

Merge upstream changes from informalsystems/hermes

Merge upstream changes from informalsystems/hermes #45

GitHub Actions / clippy-all-features failed Apr 5, 2024 in 0s

clippy-all-features

12 errors

Details

Results

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

Versions

  • rustc 1.77.1 (7cf61ebde 2024-03-27)
  • cargo 1.77.1 (e52e36006 2024-03-26)
  • clippy 0.1.77 (7cf61eb 2024-03-27)

Annotations

Check failure on line 367 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/store/substore.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/store/substore.rs:367:22
    |
367 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
367 -         tokio::task::Builder::new()
367 +         Builder::new()
    |

Check failure on line 116 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/storage.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/storage.rs:116:22
    |
116 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
116 -         tokio::task::Builder::new()
116 +         Builder::new()
    |

Check failure on line 56 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/storage.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/storage.rs:56:37
    |
56  |         let prefixes = tokio::task::Builder::new()
    |                                     ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
56  -         let prefixes = tokio::task::Builder::new()
56  +         let prefixes = Builder::new()
    |

Check failure on line 518 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:518:22
    |
518 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
518 -         tokio::task::Builder::new()
518 +         Builder::new()
    |

Check failure on line 427 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:427:22
    |
427 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
427 -         tokio::task::Builder::new()
427 +         Builder::new()
    |

Check failure on line 377 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:377:22
    |
377 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
377 -         tokio::task::Builder::new()
377 +         Builder::new()
    |

Check failure on line 315 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:315:22
    |
315 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
315 -         tokio::task::Builder::new()
315 +         Builder::new()
    |

Check failure on line 265 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:265:26
    |
265 |             tokio::task::Builder::new()
    |                          ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
265 -             tokio::task::Builder::new()
265 +             Builder::new()
    |

Check failure on line 228 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:228:26
    |
228 |             tokio::task::Builder::new()
    |                          ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
228 -             tokio::task::Builder::new()
228 +             Builder::new()
    |

Check failure on line 178 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:178:22
    |
178 |         tokio::task::Builder::new()
    |                      ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
178 -         tokio::task::Builder::new()
178 +         Builder::new()
    |

Check failure on line 107 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:107:59
    |
107 |             let (_, main_commitment_proof) = tokio::task::Builder::new()
    |                                                           ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
107 -             let (_, main_commitment_proof) = tokio::task::Builder::new()
107 +             let (_, main_commitment_proof) = Builder::new()
    |

Check failure on line 84 in /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

failed to resolve: could not find `Builder` in `task`

error[E0433]: failed to resolve: could not find `Builder` in `task`
   --> /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/c462e9a/crates/cnidarium/src/snapshot.rs:84:72
    |
84  |         let (substore_value, substore_commitment_proof) = tokio::task::Builder::new()
    |                                                                        ^^^^^^^ could not find `Builder` in `task`
    |
note: found an item that was configured out
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.37.0/src/task/mod.rs:366:26
    |
366 |         pub use builder::Builder;
    |                          ^^^^^^^
help: consider importing one of these items
    |
1   + use std::thread::Builder;
    |
1   + use tempfile::Builder;
    |
1   + use tokio::runtime::Builder;
    |
help: if you import `Builder`, refer to it directly
    |
84  -         let (substore_value, substore_commitment_proof) = tokio::task::Builder::new()
84  +         let (substore_value, substore_commitment_proof) = Builder::new()
    |