[WIP] initial u256 conversions commit #121
GitHub Actions / clippy
failed
Aug 30, 2023 in 0s
clippy
2 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 2 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.74.0-nightly (84a9f4c6e 2023-08-29)
- cargo 1.74.0-nightly (925280f02 2023-08-25)
- clippy 0.1.74 (84a9f4c 2023-08-29)
Annotations
Check failure on line 146 in crates/freeze/src/types/schemas.rs
github-actions / clippy
cannot find type `HashSet` in this scope
error[E0412]: cannot find type `HashSet` in this scope
--> crates/freeze/src/types/schemas.rs:146:22
|
146 | u256_types: &HashSet<U256Type>,
| ^^^^^^^ not found in this scope
|
help: consider importing this struct
|
1 + use std::collections::HashSet;
|
Check failure on line 18 in crates/freeze/src/types/schemas.rs
github-actions / clippy
cannot find type `HashSet` in this scope
error[E0412]: cannot find type `HashSet` in this scope
--> crates/freeze/src/types/schemas.rs:18:21
|
18 | pub u256_types: HashSet<U256Type>,
| ^^^^^^^ not found in this scope
|
help: consider importing this struct
|
1 + use std::collections::HashSet;
|
Loading