From d4eb77af589ba3a430bfd2c777c2dd4cc3ccd0f7 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 13 Nov 2023 16:55:49 -0500 Subject: [PATCH] bump arrow to 49 (#389) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fcd9a487..9e9fd7d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ js-sys = "0.3.60" getrandom = { version = "0.2.6", features = ["js"] } thiserror = "1.0" -arrow-wasm = { git = "https://github.com/kylebarron/arrow-wasm", rev = "40363b64fc8bbb8c4a2fb8a30156f8811182dada" } +arrow-wasm = { git = "https://github.com/kylebarron/arrow-wasm", rev = "564a7485fcd585647ba77e2c5d8f2cff6db02122" } # arrow-wasm = { path = "/Users/kyle/github/rust/arrow-wasm" } arrow2 = { version = "0.18", optional = true, features = [ @@ -85,11 +85,11 @@ arrow2 = { version = "0.18", optional = true, features = [ ] } parquet2 = { version = "0.17", default_features = false, optional = true } -arrow = { version = "48.0", default-features = false, optional = true, features = [ +arrow = { version = "49", default-features = false, optional = true, features = [ "ipc", "ffi", ] } -parquet = { version = "48.0", default-features = false, optional = true, features = [ +parquet = { version = "49", default-features = false, optional = true, features = [ "arrow", "base64", ] }