me
/
guix
Archived
1
0
Fork 0

gnu: rust-criterion: Add 0.4.0.

* gnu/packages/crates-io.scm (rust-criterion-0.4): New variable.
(rust-criterion-0.3): Inherit from it.
master
Marius Bakke 2022-12-04 16:33:33 +01:00 committed by Maxim Cournoyer
parent a90ed005a3
commit ca657551e8
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 52 additions and 7 deletions

View File

@ -13478,8 +13478,59 @@ final xor value. It has many built-in CRC functions.")
Rust.") Rust.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public rust-criterion-0.4
(package
(name "rust-criterion")
(version "0.4.0")
(source (origin
(method url-fetch)
(uri (crate-uri "criterion" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1jsl4r0yc3fpkyjbi8aa1jrm69apqq9rxwnjnd9brqmaq44nxiz7"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-anes" ,rust-anes-0.1)
("rust-async-std" ,rust-async-std-1)
("rust-atty" ,rust-atty-0.2)
("rust-cast" ,rust-cast-0.3)
("rust-ciborium" ,rust-ciborium-0.2)
("rust-clap" ,rust-clap-3)
("rust-criterion-plot" ,rust-criterion-plot-0.5)
("rust-csv" ,rust-csv-1)
("rust-futures" ,rust-futures-0.3)
("rust-itertools" ,rust-itertools-0.10)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-num-traits" ,rust-num-traits-0.2)
("rust-oorandom" ,rust-oorandom-11.1)
("rust-plotters" ,rust-plotters-0.3)
("rust-rayon" ,rust-rayon-1)
("rust-regex" ,rust-regex-1)
("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-smol" ,rust-smol-1)
("rust-tinytemplate" ,rust-tinytemplate-1)
("rust-tokio" ,rust-tokio-1)
("rust-walkdir" ,rust-walkdir-2))
#:cargo-development-inputs
(("rust-approx" ,rust-approx-0.5)
("rust-futures" ,rust-futures-0.3)
("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8)
("rust-tempfile" ,rust-tempfile-3))))
(home-page "https://bheisler.github.io/criterion.rs/book/index.html")
(synopsis "Statistics-driven micro-benchmarking library")
(description
"This package provides a statistics-driven micro-benchmarking library.")
;; The user can choose either license.
(license (list license:asl2.0 license:expat))))
(define-public rust-criterion-0.3 (define-public rust-criterion-0.3
(package (package
(inherit rust-criterion-0.4)
(name "rust-criterion") (name "rust-criterion")
(version "0.3.5") (version "0.3.5")
(source (source
@ -13490,7 +13541,6 @@ Rust.")
(string-append name "-" version ".tar.gz")) (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "044d2x7cxfvw2g558lzyllcv7jcdkw9xmacmb0nzx8pv4pyxl10n")))) (base32 "044d2x7cxfvw2g558lzyllcv7jcdkw9xmacmb0nzx8pv4pyxl10n"))))
(build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs
(("rust-async-std" ,rust-async-std-1) (("rust-async-std" ,rust-async-std-1)
@ -13520,12 +13570,7 @@ Rust.")
("rust-futures" ,rust-futures-0.3) ("rust-futures" ,rust-futures-0.3)
("rust-quickcheck" ,rust-quickcheck-1) ("rust-quickcheck" ,rust-quickcheck-1)
("rust-rand" ,rust-rand-0.8) ("rust-rand" ,rust-rand-0.8)
("rust-tempfile" ,rust-tempfile-3)))) ("rust-tempfile" ,rust-tempfile-3))))))
(home-page "https://bheisler.github.io/criterion.rs/book/index.html")
(synopsis "Statistics-driven micro-benchmarking library")
(description
"This package provides a statistics-driven micro-benchmarking library.")
(license (list license:asl2.0 license:expat))))
(define-public rust-criterion-0.2 (define-public rust-criterion-0.2
(package (package