-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 955 Bytes
/
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
[package]
name = "rmcmc"
version = "0.1.0"
authors = ["Mike Schmidt <[email protected]>"]
description = "RMCMC is a Bayesian statistics toolkit with implements, among other algorithms, Markov-Chain-Monte-Carlo."
repository = "https://github.com/schmidmt/rmcmc"
license = "MIT"
categories = ["science"]
keywords = ["Probability", "Statistics", "Bayesian", "Machine-learning", "MCMC"]
[features]
serde_support = ["serde", "serde_derive", "nalgebra/serde-serialize"]
[badges]
travis-ci = { repository = "schmidmt/rmcmc", branch = "master" }
maintenance = { status = "actively-developed" }
[dependencies]
alga = "0.7.2"
alga_derive = "0.7.1"
generic-array = "0.12.0"
nalgebra = "0.16.13"
num = "0.2.0"
num-traits = "0.2"
rand = "0.6.1"
reduce = "0.1.1"
rv = "^0.4"
special = "0.7.8"
typenum = "1.10.0"
rayon = "1.0.3"
serde = {version = "1.0.70", optional = true}
serde_derive = {version = "1.0.70", optional = true}
[dev-dependencies]
assert = "0.7.4"