-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 835 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
authors = ["Matthew Turner <matthew.m.turner@outlook.com>"]
description = "DataFusion helper functions for working with Parquet files"
edition = "2021"
homepage = "https://github.com/datafusion-contrib/datafusion-dft/tree/main/crates/datafusion-functions-parquet"
keywords = ["datafusion", "parquet", "query", "sql"]
license = "Apache-2.0"
name = "datafusion-functions-parquet"
readme = "README.md"
repository = "https://github.com/datafusion-contrib/datafusion-dft/tree/main/crates/datafusion-functions-parquet"
version = "0.1.0"
[dependencies]
arrow = { version = "57" }
async-trait = "0.1.41"
datafusion = { version = "51" }
parquet = { default-features = false, version = "57" }
[dev-dependencies]
parquet = { features = ["arrow"], version = "57" }
tempfile = "3"
tokio = { features = ["macros", "rt"], version = "1" }