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.
cargo build --features consistency_check
1 parent 97e5938 commit 666f9beCopy full SHA for 666f9be
.github/workflows/ci.yml
@@ -152,4 +152,4 @@ jobs:
152
- uses: actions-rs/cargo@v1
153
with:
154
command: clippy
155
- args: --all-targets --workspace --locked -- -D warnings
+ args: --all-features --all-targets --workspace --locked -- -D warnings
src/index/crates.rs
@@ -41,6 +41,6 @@ impl Crates {
41
}
42
})?;
43
44
- Ok(result?)
+ result
45
46
src/utils/consistency/mod.rs
@@ -1,5 +1,6 @@
1
use self::diff::{Diff, Diffable};
2
use crate::Index;
3
+use anyhow::Context;
4
5
mod data;
6
mod db;
0 commit comments