[package]
edition = "2021"
rust-version = "1.90"
name = "uqa-execution"
version = "0.3.5"
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.ciborium]
version = "0.2"
[dependencies.getrandom]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dependencies.sha2]
version = "0.10"
default-features = false
[dependencies.smallvec]
version = "1.15"
[dependencies.tempfile]
version = "3.13"
[dependencies.thiserror]
version = "1.0"
[dependencies.uqa-analysis]
version = "0.3.5"
[dependencies.uqa-core]
version = "0.3.5"
[dependencies.uqa-fdw]
version = "0.3.5"
[dependencies.uqa-fusion]
version = "0.3.5"
[dependencies.uqa-graph]
version = "0.3.5"
[dependencies.uqa-joins]
version = "0.3.5"
[dependencies.uqa-ml]
version = "0.3.5"
[dependencies.uqa-operators]
version = "0.3.5"
[dependencies.uqa-scoring]
version = "0.3.5"
[dependencies.uqa-sql]
version = "0.3.5"
[dependencies.uqa-storage]
version = "0.3.5"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.rayon]
version = "1.10"
[target.'cfg(not(target_os = "emscripten"))'.dependencies.rusqlite]
version = "0.39"
features = [
"bundled-sqlcipher-vendored-openssl",
"blob",
"cache",
]
default-features = false
[target.'cfg(target_os = "emscripten")'.dependencies.rusqlite]
version = "0.39"
features = [
"bundled",
"blob",
"cache",
]
default-features = false
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Threading",
]
[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"