[package]
name = "arrow-ipc"
version = "31.0.0"
description = "Support for the Arrow IPC format"
homepage = "https://github.com/apache/arrow-rs"
repository = "https://github.com/apache/arrow-rs"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
license = "Apache-2.0"
keywords = ["arrow"]
include = [
"benches/*.rs",
"src/**/*.rs",
"Cargo.toml",
]
edition = "2021"
rust-version = "1.62"
[lib]
name = "arrow_ipc"
path = "src/lib.rs"
bench = false
[dependencies]
arrow-array = { version = "31.0.0", path = "../arrow-array" }
arrow-buffer = { version = "31.0.0", path = "../arrow-buffer" }
arrow-cast = { version = "31.0.0", path = "../arrow-cast" }
arrow-data = { version = "31.0.0", path = "../arrow-data" }
arrow-schema = { version = "31.0.0", path = "../arrow-schema" }
flatbuffers = { version = "22.9.2", default-features = false, features = ["thiserror"] }
lz4 = { version = "1.23", default-features = false, optional = true }
zstd = { version = "0.12.0", default-features = false, optional = true }
[dev-dependencies]
tempfile = "3.3"