[package]
name = "polydat-core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Polydat runtime: value model, graph compiler, execution engines, kernels"
keywords = ["nosqlbench", "workload", "benchmark", "data-generation"]
categories = ["simulation"]
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/polydat-core"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
[lib]
doctest = false
[dependencies]
polydat-derive.workspace = true
polydat-grammar.workspace = true
paste = "1"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
sha2 = "0.10"
base64 = "0.22"
data-encoding = "2"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
ryu = "1"
vectordata = { version = "1.2", optional = true }
cranelift-jit = { version = "0.116", optional = true }
cranelift-module = { version = "0.116", optional = true }
cranelift-codegen = { version = "0.116", optional = true }
cranelift-frontend = { version = "0.116", optional = true }
cranelift-native = { version = "0.116", optional = true }
inventory = "0.3.24"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"], optional = true }
indexmap = "2"
half = "2"
[features]
default = ["jit"]
vectordata = ["dep:vectordata", "dep:tokio"]
jit = ["dep:cranelift-jit", "dep:cranelift-module", "dep:cranelift-codegen", "dep:cranelift-frontend", "dep:cranelift-native"]