Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rust version to 1.62 #2144

Merged
merged 1 commit into from Jul 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion arrow-flight/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ name = "arrow-flight"
description = "Apache Arrow Flight"
version = "19.0.0"
edition = "2021"
rust-version = "1.57"
rust-version = "1.62"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
Expand Down
2 changes: 1 addition & 1 deletion arrow-pyarrow-integration-testing/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ authors = ["Apache Arrow <dev@arrow.apache.org>"]
license = "Apache-2.0"
keywords = [ "arrow" ]
edition = "2021"
rust-version = "1.57"
rust-version = "1.62"

[lib]
name = "arrow_pyarrow_integration_testing"
Expand Down
2 changes: 1 addition & 1 deletion arrow/Cargo.toml
Expand Up @@ -30,7 +30,7 @@ include = [
"Cargo.toml",
]
edition = "2021"
rust-version = "1.57"
rust-version = "1.62"

[lib]
name = "arrow"
Expand Down
2 changes: 1 addition & 1 deletion integration-testing/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ authors = ["Apache Arrow <dev@arrow.apache.org>"]
license = "Apache-2.0"
edition = "2021"
publish = false
rust-version = "1.57"
rust-version = "1.62"

[features]
logging = ["tracing-subscriber"]
Expand Down
4 changes: 4 additions & 0 deletions object_store/src/throttle.rs
Expand Up @@ -430,6 +430,7 @@ mod tests {
path
}

#[allow(dead_code)]
async fn place_test_objects(
store: &ThrottledStore<InMemory>,
n_entries: usize,
Expand Down Expand Up @@ -472,6 +473,7 @@ mod tests {
t0.elapsed()
}

#[allow(dead_code)]
async fn measure_get(
store: &ThrottledStore<InMemory>,
n_bytes: Option<usize>,
Expand All @@ -498,6 +500,7 @@ mod tests {
t0.elapsed()
}

#[allow(dead_code)]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix clippy, seems func using in test not count any more.

async fn measure_list(
store: &ThrottledStore<InMemory>,
n_entries: usize,
Expand All @@ -516,6 +519,7 @@ mod tests {
t0.elapsed()
}

#[allow(dead_code)]
async fn measure_list_with_delimiter(
store: &ThrottledStore<InMemory>,
n_entries: usize,
Expand Down
2 changes: 1 addition & 1 deletion parquet/Cargo.toml
Expand Up @@ -27,7 +27,7 @@ keywords = ["arrow", "parquet", "hadoop"]
readme = "README.md"
build = "build.rs"
edition = "2021"
rust-version = "1.57"
rust-version = "1.62"

[dependencies]
parquet-format = { version = "4.0.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion parquet_derive/Cargo.toml
Expand Up @@ -26,7 +26,7 @@ authors = ["Apache Arrow <dev@arrow.apache.org>"]
keywords = [ "parquet" ]
readme = "README.md"
edition = "2021"
rust-version = "1.57"
rust-version = "1.62"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion parquet_derive_test/Cargo.toml
Expand Up @@ -26,7 +26,7 @@ authors = ["Apache Arrow <dev@arrow.apache.org>"]
keywords = [ "parquet" ]
edition = "2021"
publish = false
rust-version = "1.57"
rust-version = "1.62"

[dependencies]
parquet = { path = "../parquet", version = "19.0.0", default-features = false }
Expand Down