Skip to content

Commit 447b40d

Browse files
update rust version (#1903)
1 parent 3c1252d commit 447b40d

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

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.58"
29+
rust-version = "1.59"
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 <[email protected]>"]
2626
edition = "2021"
27-
rust-version = "1.58"
27+
rust-version = "1.59"
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.58"
28+
rust-version = "1.59"
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
@@ -25,7 +25,7 @@ keywords = [ "arrow", "datafusion", "ballista", "query", "sql" ]
2525
license = "Apache-2.0"
2626
homepage = "https://github.com/apache/arrow-datafusion"
2727
repository = "https://github.com/apache/arrow-datafusion"
28-
rust-version = "1.58"
28+
rust-version = "1.59"
2929

3030
[dependencies]
3131
clap = { version = "3", features = ["derive", "cargo"] }

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.58 as builder
18+
FROM rust:1.59 as builder
1919

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

datafusion-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authors = ["Apache Arrow <[email protected]>"]
2626
license = "Apache-2.0"
2727
keywords = [ "arrow", "query", "sql" ]
2828
edition = "2021"
29-
rust-version = "1.58"
29+
rust-version = "1.59"
3030

3131
[lib]
3232
name = "datafusion_common"

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.58"
29+
rust-version = "1.59"
3030

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

datafusion-expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authors = ["Apache Arrow <[email protected]>"]
2626
license = "Apache-2.0"
2727
keywords = [ "arrow", "query", "sql" ]
2828
edition = "2021"
29-
rust-version = "1.58"
29+
rust-version = "1.59"
3030

3131
[lib]
3232
name = "datafusion_expr"

datafusion-jit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authors = ["Apache Arrow <[email protected]>"]
2626
license = "Apache-2.0"
2727
keywords = [ "arrow", "query", "sql" ]
2828
edition = "2021"
29-
rust-version = "1.58"
29+
rust-version = "1.59"
3030

3131
[lib]
3232
name = "datafusion_jit"

datafusion-physical-expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authors = ["Apache Arrow <[email protected]>"]
2626
license = "Apache-2.0"
2727
keywords = [ "arrow", "query", "sql" ]
2828
edition = "2021"
29-
rust-version = "1.58"
29+
rust-version = "1.59"
3030

3131
[lib]
3232
name = "datafusion_physical_expr"

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.58"
34+
rust-version = "1.59"
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.58.0-buster AS builder
26+
FROM rust:1.59.0-buster AS builder
2727

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

0 commit comments

Comments
 (0)