-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
57 lines (49 loc) · 1.6 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
[package]
name = "cargo-criterion"
version = "1.1.0"
authors = ["Brook Heisler <redattack34@gmail.com>"]
edition = "2018"
description = "Cargo extension for running Criterion.rs benchmarks and reporting the results."
repository = "https://github.com/bheisler/cargo-criterion"
readme = "README.md"
keywords = ["criterion", "benchmark"]
categories = ["development-tools::profiling", "development-tools::cargo-plugins"]
license = "Apache-2.0/MIT"
exclude = ["integration_tests/*", "ci/*"]
[dependencies]
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
serde_cbor = "0.11"
toml = { version = "0.5", features = ["preserve_order"] }
clap = "2.33"
oorandom = "11.1"
cast = "0.2"
num-traits = "0.2"
rayon = "1.3"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
log = "0.4"
simplelog = "0.10"
atty = "0.2"
lazy_static = "1.4"
criterion-plot = { version = "0.4.3", optional = true }
tinytemplate = "1.1"
linked-hash-map = "0.5"
linked_hash_set = "0.1"
walkdir = "2.3"
[dependencies.plotters]
version = "0.3.1"
default-features = false
features = ["svg_backend", "area_series", "line_series"]
optional = true
[features]
default = ["gnuplot_backend", "plotters_backend"]
# Enable the gnuplot plotting backend.
gnuplot_backend = ["criterion-plot"]
# Enable the plotters plotting backend.
plotters_backend = ["plotters"]
[dev-dependencies]
approx = "0.3"
quickcheck = { version = "0.9", default-features = false }
rand = "0.7"