Cargo.toml (hyperfine-1.14.0) | : | Cargo.toml (hyperfine-1.15.0) | ||
---|---|---|---|---|
[package] | [package] | |||
authors = ["David Peter <mail@david-peter.de>"] | authors = ["David Peter <mail@david-peter.de>"] | |||
categories = ["command-line-utilities"] | categories = ["command-line-utilities"] | |||
description = "A command-line benchmarking tool" | description = "A command-line benchmarking tool" | |||
homepage = "https://github.com/sharkdp/hyperfine" | homepage = "https://github.com/sharkdp/hyperfine" | |||
license = "MIT/Apache-2.0" | license = "MIT/Apache-2.0" | |||
name = "hyperfine" | name = "hyperfine" | |||
readme = "README.md" | readme = "README.md" | |||
repository = "https://github.com/sharkdp/hyperfine" | repository = "https://github.com/sharkdp/hyperfine" | |||
version = "1.14.0" | version = "1.15.0" | |||
edition = "2018" | edition = "2018" | |||
build = "build.rs" | build = "build.rs" | |||
[features] | ||||
# Use the nightly feature windows_process_extensions_main_thread_handle | ||||
windows_process_extensions_main_thread_handle = [] | ||||
[dependencies] | [dependencies] | |||
colored = "2.0" | colored = "2.0" | |||
indicatif = "0.16" | indicatif = "0.16" | |||
statistical = "1.0" | statistical = "1.0" | |||
atty = "0.2" | atty = "0.2" | |||
csv = "1.1" | csv = "1.1" | |||
serde = { version = "1.0", features = ["derive"] } | serde = { version = "1.0", features = ["derive"] } | |||
serde_json = "1.0" | serde_json = "1.0" | |||
rust_decimal = "1.23" | rust_decimal = "1.26" | |||
rand = "0.8" | rand = "0.8" | |||
shell-words = "1.0" | shell-words = "1.0" | |||
thiserror = "1.0" | thiserror = "1.0" | |||
anyhow = "1.0" | anyhow = "1.0" | |||
[target.'cfg(not(windows))'.dependencies] | [target.'cfg(not(windows))'.dependencies] | |||
libc = "0.2" | libc = "0.2" | |||
[target.'cfg(windows)'.dependencies] | [target.'cfg(windows)'.dependencies] | |||
winapi = { version = "0.3", features = ["processthreadsapi", "minwindef", "winnt | winapi = { version = "0.3", features = ["processthreadsapi", "minwindef", "winnt | |||
"] } | ", "jobapi2", "tlhelp32"] } | |||
[target.'cfg(all(windows, not(windows_process_extensions_main_thread_handle)))'. | ||||
dependencies] | ||||
once_cell = "1.14" | ||||
[target.'cfg(target_os="linux")'.dependencies] | [target.'cfg(target_os="linux")'.dependencies] | |||
nix = { version = "0.24.1", features = ["zerocopy"] } | nix = { version = "0.25.0", features = ["zerocopy"] } | |||
[dependencies.clap] | [dependencies.clap] | |||
version = "3" | version = "3" | |||
default-features = false | default-features = false | |||
features = ["suggestions", "color", "wrap_help", "cargo"] | features = ["suggestions", "color", "wrap_help", "cargo"] | |||
[dev-dependencies] | [dev-dependencies] | |||
approx = "0.5" | approx = "0.5" | |||
assert_cmd = "2.0" | assert_cmd = "2.0" | |||
predicates = "2.1" | predicates = "2.1" | |||
End of changes. 5 change blocks. | ||||
5 lines changed or deleted | 13 lines changed or added |