[package]
edition = "2021"
rust-version = "1.70"
name = "blr-core"
version = "0.1.1"
authors = ["Christoph Brewing <christoph.brewing@wamli.dev>"]
build = false
exclude = ["*.orig"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bayesian Linear Regression with Automatic Relevance Determination for interpretable, sparse modeling in embedded and WASM environments"
homepage = "https://wamli.github.io/"
documentation = "https://docs.rs/blr-core"
readme = "README.md"
keywords = [
"bayesian",
"regression",
"ard",
"embedded",
"calibration",
]
categories = [
"algorithms",
"science",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/wamli/blr-core"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = ["faer/std"]
[lib]
name = "blr_core"
crate-type = ["lib"]
path = "src/lib.rs"
[[example]]
name = "hall_sensor"
path = "examples/hall_sensor.rs"
[[example]]
name = "noise_estimation_workflow"
path = "examples/noise_estimation_workflow.rs"
[[example]]
name = "quick_start"
path = "examples/quick_start.rs"
[[test]]
name = "test_fit"
path = "tests/test_fit.rs"
[[test]]
name = "test_parity"
path = "tests/test_parity.rs"
[[test]]
name = "test_predict"
path = "tests/test_predict.rs"
[[bench]]
name = "blr_bench"
path = "benches/blr_bench.rs"
harness = false
[dependencies.faer]
version = "0.24"
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"