mirror of
https://github.com/langchain-ai/datafusion.git
synced 2026-07-01 21:24:06 -04:00
b63ca3e09a
* chore: Update READMEs of crates to be more consistent * Add some more Apache project links * Minor formatting * Formatting * Update datafusion/pruning/README.md Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org> * suggestion * formatting * formatting --------- Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
30 lines
893 B
TOML
30 lines
893 B
TOML
[package]
|
|
name = "datafusion-pruning"
|
|
description = "DataFusion Pruning Logic"
|
|
readme = "README.md"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
authors = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
arrow = { workspace = true }
|
|
datafusion-common = { workspace = true, default-features = true }
|
|
datafusion-datasource = { workspace = true }
|
|
datafusion-expr-common = { workspace = true, default-features = true }
|
|
datafusion-physical-expr = { workspace = true }
|
|
datafusion-physical-expr-common = { workspace = true }
|
|
datafusion-physical-plan = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
datafusion-expr = { workspace = true }
|
|
datafusion-functions-nested = { workspace = true }
|
|
insta = { workspace = true }
|