1[package]
2authors = ["David Peter <mail@david-peter.de>"]
3categories = ["command-line-utilities"]
4description = "A command-line benchmarking tool"
5homepage = "https://github.com/sharkdp/hyperfine"
6license = "MIT/Apache-2.0"
7name = "hyperfine"
8readme = "README.md"
9repository = "https://github.com/sharkdp/hyperfine"
10version = "1.12.0"
11edition = "2018"
12build = "build.rs"
13
14[dependencies]
15colored = "2.0"
16indicatif = "0.16"
17statistical = "1.0"
18atty = "0.2"
19csv = "1.1"
20serde = { version = "1.0", features = ["derive"] }
21serde_json = "1.0"
22rust_decimal = "1.16"
23rand = "0.8"
24shell-words = "1.0"
25
26[target.'cfg(not(windows))'.dependencies]
27libc = "0.2"
28
29[target.'cfg(windows)'.dependencies]
30winapi = { version = "0.3", features = ["processthreadsapi", "minwindef", "winnt"] }
31
32[dependencies.clap]
33version = "2"
34default-features = false
35features = ["suggestions", "color", "wrap_help"]
36
37[dev-dependencies]
38approx = "0.5"
39assert_cmd = "2.0"
40predicates = "2.0"
41tempfile = "3.2"
42
43[build-dependencies]
44clap = "2"
45atty = "0.2"
46
47[profile.release]
48lto = true
49