[package]
edition = "2024"
rust-version = "1.85"
name = "antecedent-kernels"
version = "0.3.0"
authors = ["Antecedent Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level borrowed views and scalar/optimized numerical kernels for the Antecedent engine; start with the `antecedent` crate"
homepage = "https://github.com/iridae-dev/antecedent"
documentation = "https://docs.rs/antecedent"
readme = "README.md"
keywords = [
"causal",
"inference",
"statistics",
"bayesian",
"graphs",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iridae-dev/antecedent"
resolver = "2"
[lib]
name = "antecedent_kernels"
path = "src/lib.rs"
[[bench]]
name = "gather"
path = "benches/gather.rs"
harness = false
[[bench]]
name = "partial_correlation"
path = "benches/partial_correlation.rs"
harness = false
[[bench]]
name = "reductions"
path = "benches/reductions.rs"
harness = false
[dependencies.antecedent-core]
version = "0.3.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"