[package]
name = "datafusion-jit"
description = "Just In Time (JIT) compilation support for DataFusion query engine"
version = "10.0.0"
homepage = "https://github.com/apache/arrow-datafusion"
repository = "https://github.com/apache/arrow-datafusion"
readme = "README.md"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
license = "Apache-2.0"
keywords = [ "arrow", "query", "sql" ]
edition = "2021"
rust-version = "1.59"
[lib]
name = "datafusion_jit"
path = "src/lib.rs"
[features]
jit = []
[dependencies]
arrow = { version = "18.0.0" }
cranelift = "0.85.0"
cranelift-jit = "0.85.0"
cranelift-module = "0.85.0"
cranelift-native = "0.85.0"
datafusion-common = { path = "../common", version = "10.0.0", features = ["jit"] }
datafusion-expr = { path = "../expr", version = "10.0.0" }
parking_lot = "0.12"