Skip to content

Commit 2905ce6

Browse files
authored
Update object store MSRV to 1.64 (#6123)
* Update MSRV to 1.64 * Revert "clippy ignore" This reverts commit 7a4b760.
1 parent 6e893b5 commit 2905ce6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

object_store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ readme = "README.md"
2424
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Blob Storage and local files."
2525
keywords = ["object", "storage", "cloud"]
2626
repository = "https://github.com/apache/arrow-rs/tree/master/object_store"
27-
rust-version = "1.62.1"
27+
rust-version = "1.64.0"
2828

2929
[package.metadata.docs.rs]
3030
all-features = true

object_store/src/client/mock_server.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ impl MockServer {
6060
let mut set = JoinSet::new();
6161

6262
loop {
63-
// https://github.com/apache/arrow-rs/issues/6122
64-
#[allow(clippy::incompatible_msrv)]
6563
let (stream, _) = tokio::select! {
6664
conn = listener.accept() => conn.unwrap(),
6765
_ = &mut rx => break,

0 commit comments

Comments
 (0)