File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rust-s3"
3
- version = " 0.34.0-rc4 "
3
+ version = " 0.34.0"
4
4
authors = [" Drazen Urch" ]
5
5
description = " Rust library for working with AWS S3 and compatible object storage APIs"
6
6
repository = " https://github.com/durch/rust-s3"
Original file line number Diff line number Diff line change @@ -2025,6 +2025,7 @@ impl Bucket {
2025
2025
/// # }
2026
2026
/// ```
2027
2027
#[ maybe_async:: maybe_async]
2028
+ #[ allow( clippy:: assigning_clones) ]
2028
2029
pub async fn list (
2029
2030
& self ,
2030
2031
prefix : String ,
@@ -2109,6 +2110,7 @@ impl Bucket {
2109
2110
/// # }
2110
2111
/// ```
2111
2112
#[ maybe_async:: maybe_async]
2113
+ #[ allow( clippy:: assigning_clones) ]
2112
2114
pub async fn list_multiparts_uploads (
2113
2115
& self ,
2114
2116
prefix : Option < & str > ,
@@ -2124,6 +2126,7 @@ impl Bucket {
2124
2126
. await ?;
2125
2127
2126
2128
let is_truncated = list_multiparts_uploads_result. is_truncated ;
2129
+
2127
2130
next_marker = list_multiparts_uploads_result. next_marker . clone ( ) ;
2128
2131
results. push ( list_multiparts_uploads_result) ;
2129
2132
You can’t perform that action at this time.
0 commit comments