Skip to content

Commit d26d562

Browse files
committed
0.34.0
1 parent c8f921b commit d26d562

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

s3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-s3"
3-
version = "0.34.0-rc4"
3+
version = "0.34.0"
44
authors = ["Drazen Urch"]
55
description = "Rust library for working with AWS S3 and compatible object storage APIs"
66
repository = "https://github.com/durch/rust-s3"

s3/src/bucket.rs

+3
Original file line numberDiff line numberDiff line change
@@ -2025,6 +2025,7 @@ impl Bucket {
20252025
/// # }
20262026
/// ```
20272027
#[maybe_async::maybe_async]
2028+
#[allow(clippy::assigning_clones)]
20282029
pub async fn list(
20292030
&self,
20302031
prefix: String,
@@ -2109,6 +2110,7 @@ impl Bucket {
21092110
/// # }
21102111
/// ```
21112112
#[maybe_async::maybe_async]
2113+
#[allow(clippy::assigning_clones)]
21122114
pub async fn list_multiparts_uploads(
21132115
&self,
21142116
prefix: Option<&str>,
@@ -2124,6 +2126,7 @@ impl Bucket {
21242126
.await?;
21252127

21262128
let is_truncated = list_multiparts_uploads_result.is_truncated;
2129+
21272130
next_marker = list_multiparts_uploads_result.next_marker.clone();
21282131
results.push(list_multiparts_uploads_result);
21292132

0 commit comments

Comments
 (0)