Skip to content

Commit

Permalink
chore: Lints
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Dec 28, 2023
1 parent f029a98 commit 2d3517f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion car-mirror-wasm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![deny(unreachable_pub, private_in_public)]
#![deny(unreachable_pub)]

//! car-mirror
Expand Down
2 changes: 1 addition & 1 deletion car-mirror/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ pub fn references<E: Extend<Cid>>(

async fn verify_missing_subgraph_roots(
root: Cid,
missing_subgraph_roots: &Vec<Cid>,
missing_subgraph_roots: &[Cid],
store: &impl BlockStore,
cache: &impl Cache,
) -> Result<Vec<Cid>, Error> {
Expand Down
2 changes: 1 addition & 1 deletion car-mirror/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![deny(unreachable_pub, private_in_public)]
#![deny(unreachable_pub)]

//! car-mirror
Expand Down

0 comments on commit 2d3517f

Please sign in to comment.