mirror of
https://github.com/sharkdp/hyperfine.git
synced 2024-11-22 11:43:03 +03:00
213a45165d
Bumps [rust_decimal](https://github.com/paupino/rust-decimal) from 1.23.1 to 1.24.0. - [Release notes](https://github.com/paupino/rust-decimal/releases) - [Changelog](https://github.com/paupino/rust-decimal/blob/master/CHANGELOG.md) - [Commits](https://github.com/paupino/rust-decimal/commits) --- updated-dependencies: - dependency-name: rust_decimal dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[package]
|
|
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"
|
|
name = "hyperfine"
|
|
readme = "README.md"
|
|
repository = "https://github.com/sharkdp/hyperfine"
|
|
version = "1.14.0"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
colored = "2.0"
|
|
indicatif = "0.16"
|
|
statistical = "1.0"
|
|
atty = "0.2"
|
|
csv = "1.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rust_decimal = "1.24"
|
|
rand = "0.8"
|
|
shell-words = "1.0"
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["processthreadsapi", "minwindef", "winnt"] }
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
nix = { version = "0.24.1", features = ["zerocopy"] }
|
|
|
|
[dependencies.clap]
|
|
version = "3"
|
|
default-features = false
|
|
features = ["suggestions", "color", "wrap_help", "cargo"]
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
assert_cmd = "2.0"
|
|
predicates = "2.1"
|
|
tempfile = "3.3"
|
|
|
|
[build-dependencies]
|
|
clap = "3"
|
|
atty = "0.2"
|
|
clap_complete = "3"
|
|
|
|
[profile.release]
|
|
lto = true
|