[package]
name = "datafusion-common"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
version = "7.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
license = "Apache-2.0"
keywords = [ "arrow", "query", "sql" ]
edition = "2021"
rust-version = "1.58"
[lib]
name = "datafusion_common"
path = "src/lib.rs"
[features]
avro = ["avro-rs"]
pyarrow = ["pyo3"]
[dependencies]
arrow = { version = "9.0.0", features = ["prettyprint"] }
parquet = { version = "9.0.0", features = ["arrow"] }
avro-rs = { version = "0.13", features = ["snappy"], optional = true }
pyo3 = { version = "0.15", optional = true }
sqlparser = "0.14"
ordered-float = "2.10"