[package]
edition = "2024"
rust-version = "1.94.1"
name = "oxidelake-api"
version = "0.1.3"
authors = ["Vyncint Ng <vyncint@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OxideLake public API: DataFrame and SQL entry points (PyO3 bindings optional)"
homepage = "https://github.com/vyncint/oxidelake"
documentation = "https://docs.rs/oxidelake-api"
readme = "README.md"
keywords = [
"gpu",
"arrow",
"datafusion",
"lakehouse",
"cuda",
]
categories = [
"database-implementations",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/vyncint/oxidelake"
resolver = "2"
[package.metadata.docs.rs]
features = [
"cuda",
"predict",
]
[features]
cuda = ["oxidelake-runtime/cuda"]
default = []
io-uring = ["oxidelake-runtime/io-uring"]
metal = ["oxidelake-runtime/metal"]
predict = ["oxidelake-runtime/predict"]
[lib]
name = "oxidelake_api"
path = "src/lib.rs"
[[test]]
name = "dataframe"
path = "tests/dataframe.rs"
[dependencies.datafusion]
version = "54"
[dependencies.oxidelake-core]
version = "0.1.3"
[dependencies.oxidelake-runtime]
version = "0.1.3"
[dev-dependencies.oxidelake-storage]
version = "0.1.3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.52"
features = ["full"]
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"