-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (42 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "nuts-rs"
version = "0.13.0"
authors = [
"Adrian Seyboldt <[email protected]>",
"PyMC Developers <[email protected]>",
]
edition = "2021"
license = "MIT"
repository = "https://github.com/pymc-devs/nuts-rs"
keywords = ["statistics", "bayes"]
description = "Sample from unnormalized densities using Hamiltonian MCMC"
[profile.bench]
debug = true
lto = "fat"
opt-level = 2
codegen-units = 1
[dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
rand_distr = "0.4.3"
multiversion = "0.7.2"
itertools = "0.13.0"
thiserror = "1.0.43"
arrow = { version = "53.1.0", default-features = false, features = ["ffi"] }
rand_chacha = "0.3.1"
anyhow = "1.0.72"
faer = { version = "0.19.4", default-features = false, features = ["std"] }
pulp = "0.18.21"
rayon = "1.10.0"
[dev-dependencies]
proptest = "1.5.0"
pretty_assertions = "1.4.0"
criterion = "0.5.1"
nix = "0.29.0"
approx = "0.5.1"
ndarray = "0.16.1"
[[bench]]
name = "sample"
harness = false
[features]
nightly = ["simd_support"]
simd_support = []