Skip to content

Commit

Permalink
update rust version to 1.62 (#2144)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ted-Jiang committed Jul 23, 2022
1 parent 1b82680 commit 19a7189
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
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)]
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

0 comments on commit 19a7189

Please sign in to comment.