Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Migrate to arrow_format crate (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored Oct 18, 2021
1 parent a256efd commit 13f8d09
Show file tree
Hide file tree
Showing 45 changed files with 270 additions and 10,880 deletions.
9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ indexmap = { version = "^1.6", optional = true }
# used to print columns in a nice columnar format
comfy-table = { version = "4.0", optional = true, default-features = false }

flatbuffers = { version = "=2.0.0", optional = true }
arrow-format = { version = "*", optional = true, features = ["ipc"] }

hex = { version = "^0.4", optional = true }

# for IPC compression
Expand Down Expand Up @@ -90,6 +91,7 @@ full = [
"io_csv",
"io_json",
"io_ipc",
"io_flight",
"io_ipc_compression",
"io_json_integration",
"io_print",
Expand All @@ -107,8 +109,9 @@ io_csv = ["io_csv_read", "io_csv_write"]
io_csv_read = ["csv", "lexical-core"]
io_csv_write = ["csv", "streaming-iterator", "lexical-core"]
io_json = ["serde", "serde_json", "indexmap"]
io_ipc = ["flatbuffers"]
io_ipc = ["arrow-format"]
io_ipc_compression = ["lz4", "zstd"]
io_flight = ["io_ipc", "arrow-format/flight-data"]
io_parquet_compression = [
"parquet2/zstd",
"parquet2/snappy",
Expand Down Expand Up @@ -145,6 +148,8 @@ skip_feature_sets = [
["io_csv_write"],
["io_avro"],
["io_json"],
["io_flight"],
["io_ipc"],
["io_parquet"],
["io_json_integration"],
# this does not change the public API
Expand Down
39 changes: 0 additions & 39 deletions arrow-flight/Cargo.toml

This file was deleted.

Loading

0 comments on commit 13f8d09

Please sign in to comment.