2018-01-13 18:50:02 +03:00
|
|
|
[package]
|
2018-01-13 22:42:58 +03:00
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
description = "A command-line benchmarking tool"
|
|
|
|
homepage = "https://github.com/sharkdp/hyperfine"
|
|
|
|
license = "MIT/Apache-2.0"
|
2018-01-13 18:50:02 +03:00
|
|
|
name = "hyperfine"
|
2018-01-13 22:42:58 +03:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/sharkdp/hyperfine"
|
2019-06-08 15:38:43 +03:00
|
|
|
version = "1.6.0"
|
2019-05-07 12:55:38 +03:00
|
|
|
edition = "2018"
|
2018-01-13 18:50:02 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2019-05-08 16:11:39 +03:00
|
|
|
colored = "1.8"
|
2018-12-28 22:33:51 +03:00
|
|
|
indicatif = "0.11"
|
2019-01-31 06:14:31 +03:00
|
|
|
statistical = "1.0"
|
2019-07-17 05:18:16 +03:00
|
|
|
atty = "0.2.13"
|
2019-05-15 05:16:42 +03:00
|
|
|
cfg-if = "0.1.9"
|
2019-07-02 05:16:51 +03:00
|
|
|
csv = "1.1.1"
|
2019-08-19 05:18:04 +03:00
|
|
|
serde = { version = "1.0.99", features = ["derive"] }
|
2019-07-01 05:17:40 +03:00
|
|
|
serde_json = "1.0.40"
|
2019-08-31 10:18:26 +03:00
|
|
|
rust_decimal = "1.0"
|
2018-01-13 18:50:02 +03:00
|
|
|
|
2018-02-05 04:19:24 +03:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2018-02-01 01:51:07 +03:00
|
|
|
libc = "0.2"
|
|
|
|
|
2018-02-05 04:19:24 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-08-29 05:18:17 +03:00
|
|
|
winapi = { version = "0.3.8", features = ["processthreadsapi", "minwindef", "winnt"] }
|
2018-02-04 00:23:41 +03:00
|
|
|
|
2018-01-13 18:50:02 +03:00
|
|
|
[dependencies.clap]
|
|
|
|
version = "2"
|
|
|
|
default-features = false
|
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
2018-01-20 14:55:16 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-09-28 00:07:51 +03:00
|
|
|
approx = "0.3"
|
2019-06-19 19:50:56 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|