hyperfine 1.19.0

A command-line benchmarking tool
[[bin]]
name = "hyperfine"
path = "src/main.rs"

[build-dependencies.clap]
version = "4.4.12"

[build-dependencies.clap_complete]
version = "4.2.1"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
default-features = false
features = ["suggestions", "color", "wrap_help", "cargo", "help", "usage", "error-context"]
version = "4"

[dependencies.colored]
version = "2.1"

[dependencies.csv]
version = "1.3"

[dependencies.indicatif]
version = "=0.17.4"

[dependencies.rand]
version = "0.8"

[dependencies.rust_decimal]
version = "1.36"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.shell-words]
version = "1.0"

[dependencies.statistical]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.14"

[features]
windows_process_extensions_main_thread_handle = []

[package]
authors = ["David Peter <mail@david-peter.de>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities"]
description = "A command-line benchmarking tool"
edition = "2018"
homepage = "https://github.com/sharkdp/hyperfine"
license = "MIT OR Apache-2.0"
name = "hyperfine"
readme = "README.md"
repository = "https://github.com/sharkdp/hyperfine"
rust-version = "1.76.0"
version = "1.19.0"

[profile.release]
codegen-units = 1
lto = true
strip = true

[target."cfg(all(windows, not(windows_process_extensions_main_thread_handle)))".dependencies.once_cell]
version = "1.19"

[target."cfg(not(windows))".dependencies.libc]
version = "0.2"

[target.'cfg(target_os="linux")'.dependencies.nix]
features = ["zerocopy"]
version = "0.29"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_Security", "Win32_System_JobObjects", "Win32_System_LibraryLoader", "Win32_System_Threading"]
version = "0.59"

[[test]]
name = "common"
path = "tests/common.rs"

[[test]]
name = "execution_order_tests"
path = "tests/execution_order_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"