From 87cc9de4db816395887ee5deb8207c943e036461 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 18 Apr 2023 20:37:48 -0700 Subject: [PATCH] Enable the json feature for the parquet crate This feature makes it much easier to read/write JSON to parquet. This is immediately useful in kafka-delta-ingest but I believe will be much more generally useful for all consumers of the package --- rust/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7feb9eeae0..db1ffe396f 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltalake" -version = "0.9.0" +version = "0.9.1" rust-version = "1.64" authors = ["Qingping Hou "] homepage = "https://github.com/delta-io/delta.rs" @@ -32,6 +32,7 @@ once_cell = "1.16.0" parking_lot = "0.12" parquet = { version = "36", features = [ "async", + "json", "object_store", ], optional = true } parquet2 = { version = "0.17", optional = true }