321cec7b9c
hyperfine is a benchmark tool written in Rust. It evaluates execution time of a command passed in arguments and make a relative comparison if multiple arguments are used at the same time. It can be convinient for purposes of Rust-written systems as it runs in a stable version of Rust. The package has been checked with correct formatting and without typos: ./utils/check-package package/hyperfine/* A CI test was run on gitlab.com to verify toolchain compatibilities. Signed-off-by: Nicolas Tran <nicolas.tran@smile.fr> Reviewed-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13 lines
395 B
Makefile
13 lines
395 B
Makefile
################################################################################
|
|
#
|
|
# hyperfine
|
|
#
|
|
################################################################################
|
|
|
|
HYPERFINE_VERSION = 1.14.0
|
|
HYPERFINE_SITE = $(call github,sharkdp,hyperfine,v$(HYPERFINE_VERSION))
|
|
HYPERFINE_LICENSE = Apache-2.0 or MIT
|
|
HYPERFINE_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT
|
|
|
|
$(eval $(cargo-package))
|