Merge upstream changes from informalsystems/hermes #17
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
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|
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()
|