[package]
edition = "2021"
rust-version = "1.88"
name = "ddx-datafusion"
version = "0.1.0"
authors = ["Alexander Merose <al@merose.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DataFusion adapter for ddx: bare grad()/jvp() via an AnalyzerRule, plus the ddx_sql text-rewrite helper."
readme = "README.md"
keywords = [
"sql",
"autograd",
"differentiation",
"datafusion",
"dataframe",
]
categories = [
"mathematics",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/xqlsystems/ddx"
[lib]
name = "ddx_datafusion"
path = "src/lib.rs"
[[test]]
name = "path_a"
path = "tests/path_a.rs"
[[test]]
name = "path_b"
path = "tests/path_b.rs"
[[test]]
name = "path_b_edge_cases"
path = "tests/path_b_edge_cases.rs"
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[[test]]
name = "simulation"
path = "tests/simulation.rs"
[[test]]
name = "sqlparser_pin"
path = "tests/sqlparser_pin.rs"
[dependencies.datafusion]
version = "54"
[dependencies.ddx-core]
version = "0.2.1"
[dev-dependencies.ddx-core]
version = "0.2.1"
features = ["test-utils"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]