Skip to content

Commit 4e5fcbf

Browse files
committed
Update rust vesion to 1.57
1 parent 069449f commit 4e5fcbf

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

ballista-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = "Apache-2.0"
2626
keywords = [ "arrow", "distributed", "query", "sql" ]
2727
edition = "2021"
2828
publish = false
29-
rust-version = "1.56"
29+
rust-version = "1.57"
3030

3131
[dependencies]
3232
datafusion = { path = "../datafusion" }

ballista/rust/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ homepage = "https://github.com/apache/arrow-datafusion"
2424
repository = "https://github.com/apache/arrow-datafusion"
2525
authors = ["Apache Arrow <dev@arrow.apache.org>"]
2626
edition = "2021"
27-
rust-version = "1.56"
27+
rust-version = "1.57"
2828

2929
[dependencies]
3030
ballista-core = { path = "../core", version = "0.6.0" }

benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ homepage = "https://github.com/apache/arrow-datafusion"
2525
repository = "https://github.com/apache/arrow-datafusion"
2626
license = "Apache-2.0"
2727
publish = false
28-
rust-version = "1.56"
28+
rust-version = "1.57"
2929

3030
[features]
3131
simd = ["datafusion/simd"]

datafusion-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ keywords = [ "arrow", "datafusion", "ballista", "query", "sql" ]
2424
license = "Apache-2.0"
2525
homepage = "https://github.com/apache/arrow-datafusion"
2626
repository = "https://github.com/apache/arrow-datafusion"
27-
rust-version = "1.56"
27+
rust-version = "1.57"
2828

2929
[dependencies]
3030
clap = "2.33"

datafusion-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
FROM rust:1.56 as builder
18+
FROM rust:1.57 as builder
1919

2020
COPY ./datafusion /usr/src/datafusion
2121

datafusion-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = "Apache-2.0"
2626
keywords = [ "arrow", "query", "sql" ]
2727
edition = "2021"
2828
publish = false
29-
rust-version = "1.56"
29+
rust-version = "1.57"
3030

3131
[[example]]
3232
name = "avro_sql"

datafusion/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 = "2021"
34-
rust-version = "1.56"
34+
rust-version = "1.57"
3535

3636
[lib]
3737
name = "datafusion"

dev/docker/ballista-base.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
# Base image extends debian:buster-slim
26-
FROM rust:1.56.0-buster AS builder
26+
FROM rust:1.57.0-buster AS builder
2727

2828
RUN apt update && apt -y install musl musl-dev musl-tools libssl-dev openssl
2929

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ description = "Build and run queries against data"
2525
readme = "README.md"
2626
license = "Apache-2.0"
2727
edition = "2021"
28-
rust-version = "1.56"
28+
rust-version = "1.57"
2929

3030
[dependencies]
3131
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }

0 commit comments

Comments
 (0)