14 lines
537 B
TOML
14 lines
537 B
TOML
[package]
|
|
name = "datafusion"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2021"
|
|
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="0e440eaa5ca52c0261e88590b846808539198241", default-features = false, package = "datafusion" }
|
|
workspace-hack = { path = "../workspace-hack"}
|