diff --git a/Cargo.toml b/Cargo.toml index 6f8748690ea..397b7dabc3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ indexmap = { version = "^1.6", optional = true } # used to print columns in a nice columnar format comfy-table = { version = "5.0", optional = true, default-features = false } -arrow-format = { version = "0.4", optional = true, features = ["ipc"] } +arrow-format = { version = "0.6", optional = true, features = ["ipc"] } hex = { version = "^0.4", optional = true } diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml index 3501c3ddea6..11488b17aa2 100644 --- a/integration-testing/Cargo.toml +++ b/integration-testing/Cargo.toml @@ -29,15 +29,15 @@ logging = ["tracing-subscriber"] [dependencies] arrow2 = { path = "../", features = ["io_ipc", "io_ipc_compression", "io_flight", "io_json_integration"] } -arrow-format = { version = "0.4", features = ["full"] } +arrow-format = { version = "0.6", features = ["full"] } async-trait = "0.1.41" clap = { version = "^3", features = ["derive"] } futures = "0.3" hex = "0.4" -prost = "0.9" +prost = "0.10" serde = { version = "1.0", features = ["rc"] } serde_derive = "1.0" serde_json = { version = "1.0", features = ["preserve_order"] } tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } -tonic = "0.6.0" +tonic = "0.7.0" tracing-subscriber = { version = "0.3.1", optional = true }