We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a0fb8 commit cb8c57dCopy full SHA for cb8c57d
.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Run Clippy with pedantic and nursery
43
run: |
44
- cargo clippy --all-targets --all-features -- \
+ cargo clippy -p ironbeam --all-targets --all-features -- \
45
-W clippy::pedantic \
46
-W clippy::nursery \
47
-D warnings
examples/combiners_showcase.rs
@@ -36,7 +36,7 @@ fn main() -> Result<()> {
36
&pipeline,
37
transactions
38
.iter()
39
- .map(|(cat, price)| (cat.to_string(), *price))
+ .map(|(cat, price)| ((*cat).to_string(), *price))
40
.collect(),
);
0 commit comments