[package]
edition = "2024"
rust-version = "1.88"
name = "owalnuts"
version = "0.2.0"
authors = ["oWALNUTS contributors"]
build = false
include = [
"/src/**",
"/tests/**",
"/oracle/**",
"/examples/**",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/SECURITY.md",
"/LICENSE",
"/NOTICE",
"/THIRD_PARTY.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Within-orbit adaptive leapfrog NUTS (WALNUTS) sampling kernel with oracle parity to the reference implementation"
documentation = "https://docs.rs/owalnuts"
readme = "README.md"
keywords = [
"mcmc",
"monte-carlo",
"statistics",
"sampling",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/dhruv575/oWALNUTS"
[features]
research = []
[lib]
name = "owalnuts"
path = "src/lib.rs"
[[example]]
name = "funnel_kernel_options"
path = "examples/funnel_kernel_options.rs"
[[example]]
name = "funnel_orbit_trace"
path = "examples/funnel_orbit_trace.rs"
[[example]]
name = "funnel_paper_adaptation"
path = "examples/funnel_paper_adaptation.rs"
[[example]]
name = "funnel_replay"
path = "examples/funnel_replay.rs"
[[example]]
name = "gaussian"
path = "examples/gaussian.rs"
[[example]]
name = "kernel_bench"
path = "examples/kernel_bench.rs"
[[example]]
name = "kernel_efficiency"
path = "examples/kernel_efficiency.rs"
[[example]]
name = "readme_quick_start"
path = "examples/readme_quick_start.rs"
[[example]]
name = "state_space_path_metric"
path = "examples/state_space_path_metric.rs"
[[example]]
name = "structured_metric_benchmark"
path = "examples/structured_metric_benchmark.rs"
[[test]]
name = "chain_rescue"
path = "tests/chain_rescue.rs"
[[test]]
name = "diagnostics_arviz"
path = "tests/diagnostics_arviz.rs"
[[test]]
name = "export_cmdstan"
path = "tests/export_cmdstan.rs"
[[test]]
name = "freeze_mode"
path = "tests/freeze_mode.rs"
[[test]]
name = "kernel_fingerprint"
path = "tests/kernel_fingerprint.rs"
[[test]]
name = "nonfinite_position_policy"
path = "tests/nonfinite_position_policy.rs"
[[test]]
name = "public_facade"
path = "tests/public_facade.rs"
[[test]]
name = "sampler_api"
path = "tests/sampler_api.rs"
[[test]]
name = "structured_refresh"
path = "tests/structured_refresh.rs"
[dependencies.rand]
version = "0.9"
features = ["small_rng"]
[dependencies.rand_distr]
version = "0.5"
[dependencies.rayon]
version = "1.10"
[dev-dependencies.serde_json]
version = "1"