[package]
edition = "2021"
rust-version = "1.90"
name = "uqa-fdw"
version = "0.1.12"
authors = ["Jaepil Jeong <jaepil@cognica.io>"]
build = false
exclude = [
"/tests",
"/benches",
"/examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Foreign data wrappers (DuckDB, Arrow IPC)"
homepage = "https://github.com/cognica-io/uqa-engine"
documentation = "https://docs.rs/uqa-fdw"
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/cognica-io/uqa-engine"
[lib]
name = "uqa_fdw"
path = "src/lib.rs"
[dependencies.thiserror]
version = "1.0"
[dependencies.uqa-core]
version = "0.1.12"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.13"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.arrow-array]
version = "58"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.arrow-ipc]
version = "58"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.arrow-schema]
version = "58"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.duckdb]
version = "=1.10505.0"
features = [
"bundled",
"parquet",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
float_cmp = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
unused_must_use = "deny"