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"
|
2022-05-17 23:37:08 +03:00
|
|
|
version = "1.14.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
|
|
|
|
2022-08-08 17:37:39 +03:00
|
|
|
[features]
|
|
|
|
# Use the nightly feature windows_process_extensions_main_thread_handle
|
|
|
|
windows_process_extensions_main_thread_handle = []
|
|
|
|
|
2018-01-13 18:50:02 +03:00
|
|
|
[dependencies]
|
2020-08-01 05:26:54 +03:00
|
|
|
colored = "2.0"
|
2021-05-09 13:10:08 +03:00
|
|
|
indicatif = "0.16"
|
2019-01-31 06:14:31 +03:00
|
|
|
statistical = "1.0"
|
2019-09-01 15:48:17 +03:00
|
|
|
atty = "0.2"
|
2021-08-24 22:42:28 +03:00
|
|
|
csv = "1.1"
|
2019-09-01 15:48:17 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-09-02 10:04:06 +03:00
|
|
|
rust_decimal = "1.26"
|
2021-01-01 10:07:59 +03:00
|
|
|
rand = "0.8"
|
2021-10-04 16:34:19 +03:00
|
|
|
shell-words = "1.0"
|
2022-02-06 13:59:21 +03:00
|
|
|
thiserror = "1.0"
|
2022-02-06 19:44:28 +03:00
|
|
|
anyhow = "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]
|
2022-08-08 17:37:39 +03:00
|
|
|
winapi = { version = "0.3", features = ["processthreadsapi", "minwindef", "winnt", "jobapi2", "tlhelp32"] }
|
2022-09-06 23:43:51 +03:00
|
|
|
|
|
|
|
[target.'cfg(all(windows, not(windows_process_extensions_main_thread_handle)))'.dependencies]
|
2022-09-07 09:40:46 +03:00
|
|
|
once_cell = "1.14"
|
2018-02-04 00:23:41 +03:00
|
|
|
|
2022-05-14 20:21:41 +03:00
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
2022-09-02 09:49:58 +03:00
|
|
|
nix = { version = "0.25.0", features = ["zerocopy"] }
|
2022-05-14 20:21:41 +03:00
|
|
|
|
2018-01-13 18:50:02 +03:00
|
|
|
[dependencies.clap]
|
2022-02-03 22:50:39 +03:00
|
|
|
version = "3"
|
2018-01-13 18:50:02 +03:00
|
|
|
default-features = false
|
2022-02-03 22:50:39 +03:00
|
|
|
features = ["suggestions", "color", "wrap_help", "cargo"]
|
2018-01-20 14:55:16 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-07-01 05:02:36 +03:00
|
|
|
approx = "0.5"
|
2021-08-24 22:37:43 +03:00
|
|
|
assert_cmd = "2.0"
|
2021-12-01 06:02:36 +03:00
|
|
|
predicates = "2.1"
|
2022-02-01 06:02:49 +03:00
|
|
|
tempfile = "3.3"
|
2019-06-19 19:50:56 +03:00
|
|
|
|
2020-05-21 15:37:10 +03:00
|
|
|
[build-dependencies]
|
2022-02-03 22:50:39 +03:00
|
|
|
clap = "3"
|
2020-05-21 15:37:10 +03:00
|
|
|
atty = "0.2"
|
2022-03-05 14:10:38 +03:00
|
|
|
clap_complete = "3"
|
2020-05-21 15:37:10 +03:00
|
|
|
|
2019-06-19 19:50:56 +03:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|