13 lines
490 B
TOML
13 lines
490 B
TOML
[package]
|
|
name = "datafusion"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2018"
|
|
description = "Re-exports datafusion at a specific version"
|
|
|
|
[dependencies]
|
|
|
|
# Rename to workaround doctest bug
|
|
# Turn off optional datafusion features (e.g. don't get support for crypo functions or avro)
|
|
upstream = { git = "https://github.com/apache/arrow-datafusion.git", rev="2454e468641d4d98af211c2800c0afec2732385b", default-features = false, package = "datafusion" }
|