Skip to content

Commit a094603

Browse files
committed
use arrow 6.1.0
1 parent e49d4c7 commit a094603

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

ballista-examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ publish = false
2929
rust-version = "1.56"
3030

3131
[dependencies]
32-
arrow-flight = { version = "6.0.0" }
32+
arrow-flight = { version = "6.1.0" }
3333
datafusion = { path = "../datafusion" }
3434
ballista = { path = "../ballista/rust/client" }
3535
prost = "0.8"

ballista/rust/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tonic = "0.5"
4343
uuid = { version = "0.8", features = ["v4"] }
4444
chrono = "0.4"
4545

46-
arrow-flight = { version = "6.0.0" }
46+
arrow-flight = { version = "6.1.0" }
4747

4848
datafusion = { path = "../../../datafusion", version = "5.1.0" }
4949

ballista/rust/executor/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ edition = "2018"
2929
snmalloc = ["snmalloc-rs"]
3030

3131
[dependencies]
32-
arrow = { version = "6.0.0" }
33-
arrow-flight = { version = "6.0.0" }
32+
arrow = { version = "6.1.0" }
33+
arrow-flight = { version = "6.1.0" }
3434
anyhow = "1"
3535
async-trait = "0.1.36"
3636
ballista-core = { path = "../core", version = "0.6.0" }

datafusion-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ clap = "2.33"
3131
rustyline = "9.0"
3232
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }
3333
datafusion = { path = "../datafusion", version = "5.1.0" }
34-
arrow = { version = "6.0.0" }
34+
arrow = { version = "6.1.0" }
3535
ballista = { path = "../ballista/rust/client", version = "0.6.0" }

datafusion-examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ path = "examples/avro_sql.rs"
3434
required-features = ["datafusion/avro"]
3535

3636
[dev-dependencies]
37-
arrow-flight = { version = "6.0.0" }
37+
arrow-flight = { version = "6.1.0" }
3838
datafusion = { path = "../datafusion" }
3939
prost = "0.8"
4040
tonic = "0.5"

datafusion/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ avro = ["avro-rs", "num-traits"]
5252
[dependencies]
5353
ahash = "0.7"
5454
hashbrown = { version = "0.11", features = ["raw"] }
55-
arrow = { version = "6.0.0", features = ["prettyprint"] }
56-
parquet = { version = "6.0.0", features = ["arrow"] }
55+
arrow = { version = "6.1.0", features = ["prettyprint"] }
56+
parquet = { version = "6.1.0", features = ["arrow"] }
5757
sqlparser = "0.12"
5858
paste = "^1.0"
5959
num_cpus = "1.13.0"

0 commit comments

Comments
 (0)