[package]
edition = "2021"
name = "xlog-runtime"
version = "0.9.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime executor and relation store for XLOG"
homepage = "https://github.com/BrainyBlaze/xlog"
documentation = "https://docs.rs/xlog-runtime"
readme = "README.md"
keywords = [
"xlog",
"datalog",
"gpu",
"cuda",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BrainyBlaze/xlog"
[features]
default = []
epistemic-logic-tests = ["dep:xlog-logic"]
recursive-stats-trace = ["dep:xlog-logic"]
wcoj-phase-timing = ["xlog-cuda/wcoj-phase-timing"]
[lib]
name = "xlog_runtime"
path = "src/lib.rs"
[[test]]
name = "statistics_tests"
path = "tests/statistics_tests.rs"
[[test]]
name = "test_epistemic_gpu_workspace"
path = "tests/test_epistemic_gpu_workspace.rs"
[[test]]
name = "test_epistemic_production_reuse_audit"
path = "tests/test_epistemic_production_reuse_audit.rs"
[[test]]
name = "test_w21_part_b"
path = "tests/test_w21_part_b.rs"
[[test]]
name = "test_w23_recursive_stats"
path = "tests/test_w23_recursive_stats.rs"
required-features = ["recursive-stats-trace"]
[[test]]
name = "test_w25_default_flip"
path = "tests/test_w25_default_flip.rs"
[dependencies.cudarc]
version = "0.19.4"
features = ["cuda-12040"]
[dependencies.xlog-core]
version = "0.9.2"
[dependencies.xlog-cuda]
version = "0.9.2"
[dependencies.xlog-ir]
version = "0.9.2"
[dependencies.xlog-logic]
version = "0.9.2"
optional = true
[dependencies.xlog-stats]
version = "0.9.2"
[dev-dependencies]