Skip to content

Commit

Permalink
Enable the json feature for the parquet crate
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rtyler committed Apr 20, 2023
1 parent 151032b commit fb7aefd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deltalake"
version = "0.9.0"
version = "0.9.1"
rust-version = "1.64"
authors = ["Qingping Hou <dave2008713@gmail.com>"]
homepage = "https://github.com/delta-io/delta.rs"
Expand Down Expand Up @@ -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 }
Expand Down

0 comments on commit fb7aefd

Please sign in to comment.