adbc_datafusion 0.22.0

ADBC driver for Apache DataFusion
Documentation
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

[package]
name = "adbc_datafusion"
description = "ADBC driver for Apache DataFusion"
version.workspace = true
edition.workspace = true
rust-version = "1.88.0"                           # datafusion mrsv
authors.workspace = true
license.workspace = true
readme = "README.md"
documentation = "http://docs.rs/adbc_datafusion/"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
adbc_core.workspace = true
adbc_ffi = { workspace = true, optional = true }
arrow-array = "57.1.0"
arrow-buffer = "57.1.0"
arrow-schema = "57.1.0"
datafusion = { version = "51.0.0", default-features = false }
datafusion-substrait = { version = "51.0.0", default-features = false }
tokio = { version = "1.48", features = ["rt-multi-thread"] }
prost = "0.14.1"

[dev-dependencies]
arrow-select = "57.1.0"

[lib]
crate-type = ["lib", "cdylib"]

[features]
default = []
ffi = ["dep:adbc_ffi"]