-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
38 lines (34 loc) · 991 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
37
38
[package]
name = "critcmp"
version = "0.1.8" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
A command line utility for comparing benchmark data generated by Criterion.
"""
documentation = "https://github.com/BurntSushi/critcmp"
homepage = "https://github.com/BurntSushi/critcmp"
repository = "https://github.com/BurntSushi/critcmp"
readme = "README.md"
keywords = ["benchmark", "benchcmp", "compare", "cmp"]
license = "Unlicense/MIT"
edition = "2018"
[[bin]]
bench = false
path = "src/main.rs"
name = "critcmp"
[dependencies]
grep-cli = "0.1"
lazy_static = "1.1"
regex = { version = "1.4.5", default-features = false, features = ["std", "unicode"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tabwriter = { version = "1", features = ["ansi_formatting"] }
termcolor = "1"
unicode-width = "0.1"
walkdir = "2.2.5"
[dependencies.clap]
version = "2.32.0"
default-features = false
features = ["suggestions"]
[profile.release]
debug = true