Skip to content

Commit

Permalink
Update object store MSRV to 1.64 (apache#6123)
Browse files Browse the repository at this point in the history
* Update MSRV to 1.64

* Revert "clippy ignore"

This reverts commit 7a4b760.
  • Loading branch information
alamb authored Jul 31, 2024
1 parent 6e893b5 commit 2905ce6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion object_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ readme = "README.md"
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Blob Storage and local files."
keywords = ["object", "storage", "cloud"]
repository = "https://github.com/apache/arrow-rs/tree/master/object_store"
rust-version = "1.62.1"
rust-version = "1.64.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 0 additions & 2 deletions object_store/src/client/mock_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ impl MockServer {
let mut set = JoinSet::new();

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

0 comments on commit 2905ce6

Please sign in to comment.