We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5397374 commit 7852000Copy full SHA for 7852000
src/index/crates.rs
@@ -25,14 +25,14 @@ impl Crates {
25
if let Ok(krate) = Crate::from_slice(blob.content()) {
26
f(krate);
27
} else {
28
- log::warn!("Not a crate '{}'", entry.name().unwrap());
+ log::warn!("not a crate '{}'", entry.name().unwrap());
29
}
30
31
Result::<(), failure::Error>::Ok(())
32
})()
33
.with_context(|_| {
34
format!(
35
- "Loading crate details from '{}'",
+ "loading crate details from '{}'",
36
entry.name().unwrap_or("<unknown>")
37
)
38
});
src/lib.rs
@@ -3,7 +3,6 @@
3
#![allow(clippy::cognitive_complexity)]
4
5
pub use self::build_queue::BuildQueue;
6
-
7
pub use self::config::Config;
8
pub use self::context::Context;
9
pub use self::docbuilder::options::DocBuilderOptions;
0 commit comments