Skip to content

Commit 3fd9841

Browse files
authored
Upgrade toolchain to Rust 1.92 (#1748)
Upgrade toolchain to Rust 1.92. ### Does this change impact existing behavior? No. ### Does this change need a changelog entry? Does it require a version change? No. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). --------- Signed-off-by: Alessandro Passaro <[email protected]>
1 parent 8ed4ae4 commit 3fd9841

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

mountpoint-s3-client/src/s3_crt_client/head_object.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use regex::Regex;
77
use thiserror::Error;
88
use time::OffsetDateTime;
99
use time::format_description::well_known::Rfc2822;
10-
use tracing::error;
1110

1211
use crate::object_client::{HeadObjectError, HeadObjectParams, HeadObjectResult, ObjectClientResult, RestoreStatus};
1312

mountpoint-s3-client/src/s3_crt_client/list_objects.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use mountpoint_s3_crt::s3::client::MetaRequestResult;
77
use thiserror::Error;
88
use time::OffsetDateTime;
99
use time::format_description::well_known::Rfc3339;
10-
use tracing::error;
1110

1211
use crate::object_client::{
1312
ChecksumAlgorithm, ListObjectsError, ListObjectsResult, ObjectClientError, ObjectClientResult, ObjectInfo,

mountpoint-s3-fs/src/upload.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ use mountpoint_s3_client::ObjectClient;
44
use mountpoint_s3_client::error::{HeadObjectError, ObjectClientError, PutObjectError};
55
use mountpoint_s3_client::error_metadata::{ClientErrorMetadata, ProvideErrorMetadata};
66
use mountpoint_s3_client::types::{ChecksumAlgorithm, ETag};
7-
87
use thiserror::Error;
9-
use tracing::error;
108

119
use crate::async_util::Runtime;
1210
use crate::fs::{ServerSideEncryption, SseCorruptedError};

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.90"
2+
channel = "1.92"
33
components = ["rust-src"]

0 commit comments

Comments
 (0)