Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into matheus23/modexp-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Aug 15, 2023
2 parents 639bda4 + aa44005 commit e4d26f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"wnfs": "0.1.23",
"wnfs-bench": "0.1.23",
"wnfs-common": "0.1.23",
"wnfs-hamt": "0.1.23",
"wnfs-nameaccumulator": "0.1.23",
Expand Down
3 changes: 3 additions & 0 deletions wnfs/src/private/directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ impl PrivateDirectory {
Ok(SearchResult::Found(working_dir))
}

#[allow(clippy::suspicious)]
pub(crate) async fn get_or_create_leaf_dir_mut<'a>(
self: &'a mut Rc<Self>,
path_segments: &[String],
Expand Down Expand Up @@ -609,6 +610,7 @@ impl PrivateDirectory {
/// Ok(())
/// }
/// ```
#[allow(clippy::suspicious)]
pub async fn open_file_mut<'a>(
self: &'a mut Rc<Self>,
path_segments: &[String],
Expand Down Expand Up @@ -1352,6 +1354,7 @@ impl PrivateDirectoryContent {
///
/// The header cid is required as it's not stored in the PrivateDirectoryContent itself, but
/// stored in the serialized format.
#[allow(clippy::suspicious)]
pub(crate) async fn store(
&self,
header_cid: Cid,
Expand Down
1 change: 1 addition & 0 deletions wnfs/src/private/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,7 @@ impl PrivateFileContent {
)?)
}

#[allow(clippy::suspicious)]
pub(crate) async fn store(
&self,
header_cid: Cid,
Expand Down

0 comments on commit e4d26f9

Please sign in to comment.