-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-8423: [Rust] [Parquet] Serialize Arrow schema metadata #7917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f11b322
96a83e6
57628f4
e8a43e0
8abf5cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,6 +40,7 @@ zstd = { version = "0.5", optional = true } | |
| chrono = "0.4" | ||
| num-bigint = "0.3" | ||
| arrow = { path = "../arrow", version = "2.0.0-SNAPSHOT", optional = true } | ||
| base64 = { version = "*", optional = true } | ||
| serde_json = { version = "1.0", features = ["preserve_order"] } | ||
|
|
||
| [dev-dependencies] | ||
|
|
@@ -52,4 +53,4 @@ zstd = "0.5" | |
| arrow = { path = "../arrow", version = "2.0.0-SNAPSHOT" } | ||
|
|
||
| [features] | ||
| default = ["arrow", "snap", "brotli", "flate2", "lz4", "zstd"] | ||
| default = ["arrow", "snap", "brotli", "flate2", "lz4", "zstd", "base64"] | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not using a specific version as we already transitively depend on an older version, but I'll change this when the feature changes are merged