datafusion 0.2.14

DataFusion is a SQL parser, planner, and execution framework for Rust with support for CSV and Apache Parquet file formats
[package]
name = "datafusion"
description = "DataFusion is a SQL parser, planner, and execution framework for Rust with support for CSV and Apache Parquet file formats"
version = "0.2.14"
authors = ["Andy Grove <andygrove73@gmail.com>"]
homepage = "https://datafusion.rs"
documentation = "https://datafusion.rs/docs/"
keywords = [ "distributed", "query", "data", "processing", "sql" ]
repository = "https://github.com/datafusion-rs/datafusion"
license = "Apache-2.0"
include = [
    "src/**/*.rs",
    "Cargo.toml",
]

[lib]
name = "datafusion"
path = "src/lib.rs"

[[bin]]
name = "worker"
path = "src/bin/worker/main.rs"

[[bin]]
name = "console"
path = "src/bin/console/main.rs"

[dependencies]
bytes = "0.4"
byteorder = "1"
fnv = "1.0.3"
csv = "1.0.0"
datafusion-arrow = "0.1.0-nightly-20180519-2"
#datafusion-arrow = { path = "../datafusion-arrow" }

lazy_static = "1.0"
parquet = "0.3.0"
#parquet = { path = "../parquet-rs" }
json = "0.11.13"
clap = "2.31.2"
liner = "0.4.3"

[dev-dependencies]
criterion = "0.2.0"

#[[bench]]
#name = "dataframe_bench"
#harness = false

#[[bench]]
#name = "sql_bench"
#harness = false

[[bench]]
name = "read_csv"
harness = false

#[[bench]]
#name = "filter_primitive"
#harness = false
#
#[[bench]]
#name = "udf_udt"
#harness = false