[package]
edition = "2021"
rust-version = "1.90"
name = "uqa-execution"
version = "0.1.6"
authors = ["Jaepil Jeong <jaepil@cognica.io>"]
build = false
exclude = [
"/tests",
"/benches",
"/examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Volcano physical operators with row-batch pipelines"
homepage = "https://github.com/cognica-io/uqa-engine"
documentation = "https://docs.rs/uqa-execution"
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/cognica-io/uqa-engine"
[lib]
name = "uqa_execution"
path = "src/lib.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dependencies.smallvec]
version = "1.15"
[dependencies.tempfile]
version = "3.13"
[dependencies.thiserror]
version = "1.0"
[dependencies.uqa-core]
version = "0.1.6"
[dependencies.uqa-sql]
version = "0.1.6"
[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"