[package]
edition = "2021"
rust-version = "1.89"
name = "oxisql-datafusion"
version = "0.3.1"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Apache DataFusion TableProvider over oxisql Connection — enables OLAP SQL queries against oxisql-backed tables"
readme = "README.md"
keywords = [
"database",
"sql",
"datafusion",
"cooljapan",
"oxisql",
]
categories = [
"database",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxisql"
[features]
columnar = ["dep:oxistore-columnar"]
default = []
mysql = ["dep:oxisql-mysql"]
parse = ["dep:oxisql-parse"]
postgres = ["dep:oxisql-postgres"]
sqlite = ["dep:oxisql-sqlite-compat"]
[lib]
name = "oxisql_datafusion"
path = "src/lib.rs"
[[test]]
name = "plan_bridge_structural"
path = "tests/plan_bridge_structural.rs"
[[test]]
name = "pushdown_extra"
path = "tests/pushdown_extra.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "query_context"
path = "tests/query_context.rs"
[[test]]
name = "query_live"
path = "tests/query_live.rs"
[[test]]
name = "query_parquet"
path = "tests/query_parquet.rs"
[[test]]
name = "query_plan"
path = "tests/query_plan.rs"
[[test]]
name = "query_provider"
path = "tests/query_provider.rs"
[[test]]
name = "query_stream"
path = "tests/query_stream.rs"
[[test]]
name = "query_types"
path = "tests/query_types.rs"
[[test]]
name = "query_udf"
path = "tests/query_udf.rs"
[[bench]]
name = "datafusion_benchmarks"
path = "benches/datafusion_benchmarks.rs"
harness = false
[dependencies.arrow]
version = "58.3.0"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.datafusion]
version = "54.0.0"
features = ["sql"]
default-features = false
[dependencies.datafusion-datasource]
version = "54.0.0"
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.oxisql-core]
version = "0.3"
[dependencies.oxisql-mysql]
version = "0.3"
optional = true
[dependencies.oxisql-parse]
version = "0.3"
optional = true
[dependencies.oxisql-postgres]
version = "0.3"
optional = true
[dependencies.oxisql-sqlite-compat]
version = "0.3"
optional = true
[dependencies.oxistore-columnar]
version = "0.1.3"
optional = true
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dev-dependencies.criterion]
version = "0.8.2"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]