From aa44005ff7269ef0af745c742e895e4ae6316fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Tue, 15 Aug 2023 11:51:58 +0200 Subject: [PATCH] chore: Release 0.1.24 (#329) Release-As: 0.1.24 Also ignore incorrect clippy `needless_pass_by_ref_mut` lint until https://github.com/rust-lang/rust-clippy/pull/11314 is merged. --- .release-please-manifest.json | 1 - wnfs/src/private/directory.rs | 3 +++ wnfs/src/private/file.rs | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a5a598ad..2e76136f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -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", diff --git a/wnfs/src/private/directory.rs b/wnfs/src/private/directory.rs index 2d38227e..eb77c261 100644 --- a/wnfs/src/private/directory.rs +++ b/wnfs/src/private/directory.rs @@ -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, path_segments: &[String], @@ -618,6 +619,7 @@ impl PrivateDirectory { /// Ok(()) /// } /// ``` + #[allow(clippy::suspicious)] pub async fn open_file_mut<'a>( self: &'a mut Rc, path_segments: &[String], @@ -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, diff --git a/wnfs/src/private/file.rs b/wnfs/src/private/file.rs index ce20c332..9f621233 100644 --- a/wnfs/src/private/file.rs +++ b/wnfs/src/private/file.rs @@ -805,6 +805,7 @@ impl PrivateFileContent { )?) } + #[allow(clippy::suspicious)] pub(crate) async fn store( &self, header_cid: Cid,