-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
92 lines (79 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "rv"
version = "0.18.0"
authors = ["Baxter Eaves", "Michael Schmidt", "Chad Scherrer"]
description = "Random variables"
repository = "https://github.com/promised-ai/rv"
readme = "README.md"
license = "MIT"
keywords = ["Probability", "Statistics", "Bayesian", "Machine-learning"]
categories = ["science"]
edition = "2021"
include = ["README.md", "src/**/*", "benches/*", "Cargo.toml"]
rust-version = "1.72"
[badges]
github = { repository = "promised-ai/rv", tag = "v0.17.0" }
maintenance = { status = "actively-developed" }
[dependencies]
argmin = { version = "0.10", optional = true }
argmin-math = { version = "0.4", optional = true, features = ["nalgebra_v0_32"] }
doc-comment = "0.3"
lru = "0.12"
nalgebra = { version = "0.32", optional = true }
num = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
serde = {version = "1", features = ["derive"], optional = true}
special = "0.10"
num-traits = "0.2"
rand_xoshiro = { version = "0.6", optional = true, features=["serde1"]}
itertools = "0.13"
[dev-dependencies]
assert = "0.7"
criterion = { version = "0.5", features = ["html_reports"] }
indoc = "2"
peroxide = { version = "0.37" }
proptest = "1.5"
serde_yaml = "0.9"
serde_json = "1"
approx = "0.5"
rand_xoshiro = "0.6"
[features]
serde1 = ["serde", "nalgebra/serde-serialize"]
arraydist = ["nalgebra"]
process = ["serde", "nalgebra/serde-serialize", "argmin", "argmin-math", "arraydist"]
datum = []
experimental = ["rand_xoshiro"]
[package.metadata.docs.rs]
all-features = true
[profile.test.package.proptest]
opt-level = 3
# Benchmarks
# ==========
[[bench]]
name = "mvg"
harness = false
required-features = ["arraydist"]
[[bench]]
name = "gev"
harness = false
[[bench]]
name = "wishart"
harness = false
required-features = ["arraydist"]
[[bench]]
name = "categorical"
harness = false
[[bench]]
name = "beta"
harness = false
[[bench]]
name = "unit_powerlaw"
harness = false
[[bench]]
name = "rv"
harness = false
required-features = ["arraydist"]
[[bench]]
name = "mixture_entropy"
harness = false