Skip to content

Commit

Permalink
chore: Release 0.1.24 (#329)
Browse files Browse the repository at this point in the history
Release-As: 0.1.24

Also ignore incorrect clippy `needless_pass_by_ref_mut` lint until rust-lang/rust-clippy#11314 is merged.
  • Loading branch information
matheus23 committed Aug 15, 2023
1 parent 0cf41ca commit aa44005
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 @@ -618,6 +619,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 @@ -1362,6 +1364,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 @@ -805,6 +805,7 @@ impl PrivateFileContent {
)?)
}

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

0 comments on commit aa44005

Please sign in to comment.