forked from bheisler/criterion.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 loc) · 1.3 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
[package]
authors = ["Jorge Aparicio <[email protected]>", "Brook Heisler <[email protected]>"]
name = "criterion"
version = "0.2.4"
description = "Statistics-driven micro-benchmarking library"
homepage = "https://japaric.github.io/criterion.rs/book/index.html"
repository = "https://github.com/japaric/criterion.rs"
readme = "README.md"
keywords = ["criterion", "benchmark"]
categories = ["development-tools::profiling"]
license = "Apache-2.0/MIT"
[dependencies]
criterion-plot = { path="plot", version="0.2.4", optional = true }
criterion-stats = { path="stats", version="0.2.4" }
failure = "0.1.1"
failure_derive = "0.1.1"
itertools = "0.7"
itertools-num = "0.1"
log = "0.4"
simplelog = "^0.5.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
atty = "0.2"
clap = "2.29"
handlebars = { version = "0.32", optional = true }
csv = "1.0"
[dev-dependencies]
walkdir = "2.1"
tempdir = "0.3"
[badges]
travis-ci = { repository = "japaric/criterion.rs" }
appveyor = { repository = "japaric/criterion.rs", id = "4255ads9ctpupcl2" }
coveralls = { repository = "japaric/criterion.rs" }
maintenance = { status = "passively-maintained" }
[features]
real_blackbox = []
html_reports = ["handlebars", "criterion-plot"]
default = ["html_reports"]
[workspace]
[[bench]]
name = "bench_main"
harness = false
[lib]
bench = false