Skip to content

Commit 5c49b6f

Browse files
committed
Remove MSRV changes
1 parent 8f56f5d commit 5c49b6f

File tree

11 files changed

+12
-7
lines changed

11 files changed

+12
-7
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ jobs:
122122
uses: ./.github/actions/setup-builder
123123
- name: Install cargo-msrv
124124
run: cargo install cargo-msrv
125+
- name: Downgrade arrow dependencies
126+
run: cargo update -p ahash --precise 0.8.7
125127
- name: Check arrow
126128
working-directory: arrow
127129
run: cargo msrv --log-target stdout verify

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ include = [
7474
"Cargo.toml",
7575
]
7676
edition = "2021"
77-
rust-version = "1.70"
77+
rust-version = "1.62"
7878

7979
[workspace.dependencies]
8080
arrow = { version = "53.2.0", path = "./arrow", default-features = false }

arrow-avro/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ crc = { version = "3.0", optional = true }
5353

5454

5555
[dev-dependencies]
56+

arrow-flight/gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name = "gen"
2020
description = "Code generation for arrow-flight"
2121
version = "0.1.0"
2222
edition = { workspace = true }
23-
rust-version = "1.71.1"
23+
rust-version = { workspace = true }
2424
authors = { workspace = true }
2525
homepage = { workspace = true }
2626
repository = { workspace = true }

arrow-integration-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ authors = { workspace = true }
2525
license = { workspace = true }
2626
edition = { workspace = true }
2727
publish = false
28-
rust-version = "1.75.0"
28+
rust-version = { workspace = true }
2929

3030
[lib]
3131
crate-type = ["lib", "cdylib"]

arrow-json/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ rand = { version = "0.8", default-features = false, features = ["std", "std_rng"
6060
[[bench]]
6161
name = "serde"
6262
harness = false
63+

arrow-pyarrow-integration-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ authors = ["Apache Arrow <[email protected]>"]
2525
license = "Apache-2.0"
2626
keywords = [ "arrow" ]
2727
edition = "2021"
28-
rust-version = "1.70"
28+
rust-version = "1.62"
2929
publish = false
3030

3131
[lib]

arrow-row/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ arrow-ord = { workspace = true }
5353
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
5454

5555
[features]
56+

arrow-schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = { workspace = true }
2626
keywords = { workspace = true }
2727
include = { workspace = true }
2828
edition = { workspace = true }
29-
rust-version = "1.64"
29+
rust-version = { workspace = true }
3030

3131
[lib]
3232
name = "arrow_schema"

arrow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ include = [
3131
"Cargo.toml",
3232
]
3333
edition = { workspace = true }
34-
rust-version = { workspace = true }
34+
rust-version = "1.70.0"
3535

3636
[lib]
3737
name = "arrow"

0 commit comments

Comments
 (0)