[package]
edition = "2021"
name = "adbcbridge"
version = "0.1.3"
build = "build.rs"
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Locate and load adbcbridge, the ADBC driver for any ODBC data source, through adbc_driver_manager"
homepage = "https://adbcbridge.org"
readme = "README.md"
keywords = [
"adbc",
"odbc",
"arrow",
"database",
"driver",
]
categories = [
"database",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/singhpratech/adbcbridge"
[features]
bundled = ["dep:cc"]
default = ["bundled"]
[lib]
name = "adbcbridge"
path = "src/lib.rs"
[[test]]
name = "csrc_in_sync"
path = "tests/csrc_in_sync.rs"
[[test]]
name = "sqlite"
path = "tests/sqlite.rs"
[dependencies.adbc_core]
version = "0.24"
[dependencies.adbc_driver_manager]
version = "0.24"
[build-dependencies.cc]
version = "1.0.83"
optional = true