forked from bheisler/criterion.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (40 loc) · 1.12 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
[package]
authors = ["Jorge Aparicio <[email protected]>", "Brook Heisler <[email protected]>"]
name = "criterion-stats"
version = "0.2.4"
description = "Criterion's statistics library"
repository = "https://github.com/japaric/criterion.rs"
documentation = "https://docs.rs/criterion-stats"
readme = "README.md"
keywords = ["statistics", "stats", "criterion"]
license = "MIT/Apache-2.0"
[dependencies]
cast = "0.2"
num-traits = "0.2"
num_cpus = "1"
rand = "0.4"
thread-scoped = "1.0.2"
[dev-dependencies]
approx = "0.1.1"
itertools-num = "0.1"
quickcheck = { version = "0.6", default-features = false }
criterion = { path="..", version="0.2.1", default-features = false }
[badges]
travis-ci = { repository = "japaric/criterion.rs" }
appveyor = { repository = "japaric/criterion.rs", id = "4255ads9ctpupcl2" }
maintenance = { status = "passively-maintained" }
[[bench]]
name = "univariate_kde"
harness = false
[[bench]]
name = "univariate_sample"
harness = false
[[bench]]
name = "univariate_bootstrap"
harness = false
[[bench]]
name = "bivariate_regression"
harness = false
[[bench]]
name = "bivariate_bootstrap"
harness = false