Skip to content

Commit

Permalink
feature out ipc::{reader/writer}
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Sep 3, 2023
1 parent 6e28c03 commit baeb999
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ arrow-buffer = { version = "46.0.0", path = "./arrow-buffer" }
arrow-cast = { version = "46.0.0", path = "./arrow-cast" }
arrow-csv = { version = "46.0.0", path = "./arrow-csv" }
arrow-data = { version = "46.0.0", path = "./arrow-data" }
arrow-ipc = { version = "46.0.0", path = "./arrow-ipc" }
arrow-ipc = { version = "46.0.0", path = "./arrow-ipc", default-features = false }
arrow-json = { version = "46.0.0", path = "./arrow-json" }
arrow-ord = { version = "46.0.0", path = "./arrow-ord" }
arrow-row = { version = "46.0.0", path = "./arrow-row" }
Expand Down
5 changes: 5 additions & 0 deletions arrow-ipc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ name = "arrow_ipc"
path = "src/lib.rs"
bench = false

[features]
default = ["reader", "writer"]
reader = []
writer = []

[dependencies]
arrow-array = { workspace = true }
arrow-buffer = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ arrow-buffer = { workspace = true }
arrow-cast = { workspace = true }
arrow-csv = { workspace = true, optional = true }
arrow-data = { workspace = true }
arrow-ipc = { workspace = true, optional = true }
arrow-ipc = { workspace = true, optional = true, default-features = true }
arrow-json = { workspace = true, optional = true }
arrow-ord = { workspace = true }
arrow-row = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ arrow-csv = { workspace = true, optional = true }
arrow-data = { workspace = true, optional = true }
arrow-schema = { workspace = true, optional = true }
arrow-select = { workspace = true, optional = true }
arrow-ipc = { workspace = true, optional = true }
arrow-ipc = { workspace = true, default-features = false, optional = true }
# Intentionally not a path dependency as object_store is released separately
object_store = { version = "0.7", default-features = false, optional = true }

Expand Down Expand Up @@ -77,7 +77,7 @@ flate2 = { version = "1.0", default-features = false, features = ["rust_backend"
lz4 = { version = "1.23", default-features = false }
zstd = { version = "0.12", default-features = false }
serde_json = { version = "1.0", features = ["std"], default-features = false }
arrow = { workspace = true, features = ["ipc", "test_utils", "prettyprint", "json"] }
arrow = { workspace = true, features = ["test_utils", "prettyprint", "json"] }
tokio = { version = "1.0", default-features = false, features = ["macros", "rt", "io-util", "fs"] }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }

Expand Down

0 comments on commit baeb999

Please sign in to comment.