-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
56 lines (49 loc) · 1.25 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
49
50
51
52
53
54
55
56
[package]
name = "nutpie"
version = "0.13.2"
authors = [
"Adrian Seyboldt <[email protected]>",
"PyMC Developers <[email protected]>",
]
edition = "2021"
license = "MIT"
repository = "https://github.com/pymc-devs/nutpie"
keywords = ["statistics", "bayes"]
description = "Python wrapper for nuts-rs -- a NUTS sampler written in Rust."
rust-version = "1.76"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
simd_support = ["nuts-rs/simd_support"]
[lib]
name = "_lib"
crate-type = ["cdylib"]
[dependencies]
nuts-rs = "0.12.1"
numpy = "0.21.0"
rand = "0.8.5"
thiserror = "1.0.44"
rand_chacha = "0.3.1"
rayon = "1.9.0"
# Keep arrow in sync with nuts-rs requirements
arrow = { version = "52.0.0", default-features = false, features = ["ffi"] }
anyhow = "1.0.72"
itertools = "0.13.0"
bridgestan = "2.5.0"
rand_distr = "0.4.3"
smallvec = "1.11.0"
upon = { version = "0.8.1", default-features = false, features = [] }
time-humanize = { version = "0.1.3", default-features = false }
indicatif = "0.17.8"
[dependencies.pyo3]
version = "0.21.0"
features = ["extension-module", "anyhow"]
[dev-dependencies]
criterion = "0.5.1"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 2
[profile.bench]
debug = true
lto = "fat"