hyperfine/Cargo.toml

47 lines
1010 B
TOML
Raw Normal View History

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"
2020-10-17 00:57:21 +03:00
version = "1.11.0"
2019-05-07 12:55:38 +03:00
edition = "2018"
2020-05-21 15:37:10 +03:00
build = "build.rs"
2018-01-13 18:50:02 +03:00
[dependencies]
colored = "2.0"
2021-05-09 13:10:08 +03:00
indicatif = "0.16"
statistical = "1.0"
2019-09-01 15:48:17 +03:00
atty = "0.2"
cfg-if = "1.0"
csv = "1.1.6"
2019-09-01 15:48:17 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rust_decimal = "1.14"
rand = "0.8"
2018-01-13 18:50:02 +03:00
[target.'cfg(not(windows))'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
2019-09-01 15:48:17 +03:00
winapi = { version = "0.3", 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]
approx = "0.5"
2020-05-21 15:37:10 +03:00
[build-dependencies]
clap = "2"
version_check = "0.9"
atty = "0.2"
[profile.release]
lto = true